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.
+
+
+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`.
+
+
+## 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
-[](LICENSE)
-[](https://github.com/Konyaco/compose-fluent-ui/releases)
-[](https://central.sonatype.com/artifact/com.konyaco/fluent/)
+[](LICENSE)
+[](https://github.com/compose-fluent/compose-fluent-ui/releases)
+[](https://central.sonatype.com/artifact/io.github.compose-fluent/fluent/)
+[](https://t.me/compose_fluent_ui)
+[//]: # ([](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