init
This commit is contained in:
41
fluent-icons-core/build.gradle.kts
Normal file
41
fluent-icons-core/build.gradle.kts
Normal file
@ -0,0 +1,41 @@
|
||||
plugins {
|
||||
kotlin("multiplatform")
|
||||
id("org.jetbrains.compose")
|
||||
id("com.android.library")
|
||||
id("maven-publish")
|
||||
}
|
||||
|
||||
group = "com.konyaco"
|
||||
version = "0.0.1-dev4"
|
||||
|
||||
kotlin {
|
||||
jvm()
|
||||
android()
|
||||
sourceSets {
|
||||
val commonMain by getting {
|
||||
dependencies {
|
||||
implementation(compose.foundation)
|
||||
}
|
||||
}
|
||||
val jvmMain by getting {
|
||||
dependencies {
|
||||
implementation(compose.desktop.currentOs)
|
||||
}
|
||||
}
|
||||
val jvmTest by getting
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdk = 33
|
||||
namespace = "com.konyaco.fluent.icons"
|
||||
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
|
||||
defaultConfig {
|
||||
minSdk = 24
|
||||
targetSdk = 33
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
}
|
||||
2
fluent-icons-core/src/androidMain/AndroidManifest.xml
Normal file
2
fluent-icons-core/src/androidMain/AndroidManifest.xml
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"/>
|
||||
@ -0,0 +1,62 @@
|
||||
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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,58 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,37 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,82 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,69 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,56 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,66 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(18.5f, 2.33f)
|
||||
lineToRelative(3.17f, 3.18f)
|
||||
curveToRelative(0.88f, 0.88f, 0.88f, 2.3f, 0.0f, 3.18f)
|
||||
lineToRelative(-2.42f, 2.42f)
|
||||
arcToRelative(2.5f, 2.5f, 0.0f, false, true, 1.75f, 2.4f)
|
||||
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)
|
||||
arcToRelative(2.5f, 2.5f, 0.0f, false, true, 2.39f, 1.74f)
|
||||
lineToRelative(2.42f, -2.42f)
|
||||
curveToRelative(0.88f, -0.88f, 2.3f, -0.88f, 3.18f, 0.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(14.44f, 11.0f)
|
||||
lineTo(13.0f, 9.56f)
|
||||
lineTo(13.0f, 11.0f)
|
||||
horizontalLineToRelative(1.44f)
|
||||
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()
|
||||
}
|
||||
}
|
||||
return _apps!!
|
||||
}
|
||||
|
||||
private var _apps: ImageVector? = null
|
||||
@ -0,0 +1,82 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,76 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,66 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,38 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,52 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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)
|
||||
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.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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,38 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,39 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,83 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,39 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,83 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,40 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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.09f)
|
||||
verticalLineToRelative(-0.4f)
|
||||
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
|
||||
@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,51 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,56 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,56 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,84 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,51 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,50 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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.09f, 0.08f)
|
||||
lineToRelative(-5.0f, 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
|
||||
@ -0,0 +1,40 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,37 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,45 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,40 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,45 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,40 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,51 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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)
|
||||
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(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
|
||||
@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,74 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,53 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,42 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,43 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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
|
||||
@ -0,0 +1,65 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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
|
||||
@ -0,0 +1,85 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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)
|
||||
lineToRelative(0.08f, 0.08f)
|
||||
lineToRelative(3.0f, 3.0f)
|
||||
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
|
||||
@ -0,0 +1,37 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,47 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,37 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,37 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,60 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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
|
||||
@ -0,0 +1,43 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,43 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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
|
||||
@ -0,0 +1,52 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,64 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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
|
||||
@ -0,0 +1,50 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,50 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,56 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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
|
||||
@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,48 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,49 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,61 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,91 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,44 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,61 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,51 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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(16.22f, 9.72f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.1f, -1.45f)
|
||||
lineToRelative(-4.58f, -4.95f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.73f, 0.68f)
|
||||
verticalLineToRelative(5.1f)
|
||||
lineToRelative(-0.64f, -0.54f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, true, false, -1.29f, 1.54f)
|
||||
lineToRelative(1.93f, 1.6f)
|
||||
verticalLineToRelative(0.6f)
|
||||
lineToRelative(-1.92f, 1.6f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.28f, 1.53f)
|
||||
lineToRelative(0.64f, -0.54f)
|
||||
lineTo(10.01f, 20.0f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.73f, 0.68f)
|
||||
lineToRelative(4.57f, -4.96f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.1f, -1.44f)
|
||||
lineTo(13.49f, 12.0f)
|
||||
lineToRelative(2.74f, -2.28f)
|
||||
close()
|
||||
moveTo(12.0f, 13.37f)
|
||||
lineToRelative(2.12f, 1.77f)
|
||||
lineToRelative(-2.12f, 2.3f)
|
||||
verticalLineToRelative(-4.07f)
|
||||
close()
|
||||
moveTo(12.0f, 10.63f)
|
||||
lineTo(12.0f, 6.56f)
|
||||
lineToRelative(2.12f, 2.3f)
|
||||
lineTo(12.0f, 10.63f)
|
||||
close()
|
||||
}
|
||||
}
|
||||
return _bluetooth!!
|
||||
}
|
||||
|
||||
private var _bluetooth: ImageVector? = null
|
||||
@ -0,0 +1,51 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,54 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,33 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,44 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,60 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,53 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,81 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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(6.75f, 2.0f)
|
||||
curveTo(5.51f, 2.0f, 4.5f, 3.0f, 4.5f, 4.25f)
|
||||
verticalLineToRelative(16.5f)
|
||||
curveToRelative(0.0f, 0.41f, 0.34f, 0.75f, 0.75f, 0.75f)
|
||||
lineTo(7.5f, 21.5f)
|
||||
verticalLineToRelative(-4.25f)
|
||||
curveToRelative(0.0f, -0.41f, 0.34f, -0.75f, 0.75f, -0.75f)
|
||||
horizontalLineToRelative(7.5f)
|
||||
curveToRelative(0.41f, 0.0f, 0.75f, 0.34f, 0.75f, 0.75f)
|
||||
verticalLineToRelative(4.25f)
|
||||
horizontalLineToRelative(2.25f)
|
||||
curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f)
|
||||
verticalLineToRelative(-9.0f)
|
||||
curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f)
|
||||
horizontalLineToRelative(-0.75f)
|
||||
lineTo(16.5f, 4.25f)
|
||||
curveToRelative(0.0f, -1.24f, -1.0f, -2.25f, -2.25f, -2.25f)
|
||||
horizontalLineToRelative(-7.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(8.5f, 12.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(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, true, 0.0f, 2.0f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -2.0f)
|
||||
close()
|
||||
moveTo(11.0f, 13.5f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f)
|
||||
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -2.0f, 0.0f)
|
||||
close()
|
||||
moveTo(15.5f, 12.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.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(15.0f, 21.5f)
|
||||
lineTo(15.0f, 18.0f)
|
||||
horizontalLineToRelative(-2.25f)
|
||||
verticalLineToRelative(3.5f)
|
||||
lineTo(15.0f, 21.5f)
|
||||
close()
|
||||
moveTo(11.25f, 21.5f)
|
||||
lineTo(11.25f, 18.0f)
|
||||
lineTo(9.0f, 18.0f)
|
||||
verticalLineToRelative(3.5f)
|
||||
horizontalLineToRelative(2.25f)
|
||||
close()
|
||||
}
|
||||
}
|
||||
return _building!!
|
||||
}
|
||||
|
||||
private var _building: ImageVector? = null
|
||||
@ -0,0 +1,96 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,58 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,58 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,40 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(7.77f, 2.44f)
|
||||
lineToRelative(1.08f, -0.35f)
|
||||
curveToRelative(1.0f, -0.32f, 2.08f, 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.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.54f, -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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,30 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,30 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,30 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,30 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,30 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,49 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,49 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,70 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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(15.0f, 18.0f)
|
||||
arcToRelative(4.98f, 4.98f, 0.0f, false, false, 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(18.0f, 20.6f)
|
||||
lineToRelative(-1.82f, 1.27f)
|
||||
arcToRelative(0.75f, 0.75f, 0.0f, false, true, -1.17f, -0.5f)
|
||||
verticalLineToRelative(-0.11f)
|
||||
lineTo(15.0f, 18.0f)
|
||||
close()
|
||||
moveTo(19.25f, 3.0f)
|
||||
arcTo(2.75f, 2.75f, 0.0f, false, true, 22.0f, 5.6f)
|
||||
lineTo(22.0f, 11.0f)
|
||||
curveToRelative(-0.4f, -0.54f, -0.91f, -1.0f, -1.5f, -1.33f)
|
||||
lineTo(20.5f, 5.75f)
|
||||
curveToRelative(0.0f, -0.64f, -0.5f, -1.18f, -1.12f, -1.24f)
|
||||
lineTo(4.75f, 4.51f)
|
||||
curveToRelative(-0.65f, 0.0f, -1.18f, 0.49f, -1.24f, 1.12f)
|
||||
lineToRelative(-0.01f, 0.12f)
|
||||
verticalLineToRelative(9.5f)
|
||||
curveToRelative(0.0f, 0.65f, 0.5f, 1.18f, 1.12f, 1.25f)
|
||||
horizontalLineToRelative(9.05f)
|
||||
arcToRelative(5.0f, 5.0f, 0.0f, false, false, 0.33f, 0.5f)
|
||||
verticalLineToRelative(1.0f)
|
||||
lineTo(4.75f, 18.0f)
|
||||
arcToRelative(2.75f, 2.75f, 0.0f, false, true, -2.74f, -2.58f)
|
||||
lineTo(2.0f, 15.25f)
|
||||
verticalLineToRelative(-9.5f)
|
||||
arcToRelative(2.75f, 2.75f, 0.0f, false, true, 2.58f, -2.74f)
|
||||
horizontalLineToRelative(14.67f)
|
||||
close()
|
||||
moveTo(18.0f, 10.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(11.25f, 12.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(17.25f, 7.0f)
|
||||
arcToRelative(0.75f, 0.75f, 0.0f, false, true, 0.1f, 1.5f)
|
||||
lineTo(6.75f, 8.5f)
|
||||
arcToRelative(0.75f, 0.75f, 0.0f, false, true, -0.1f, -1.5f)
|
||||
horizontalLineToRelative(10.6f)
|
||||
close()
|
||||
}
|
||||
}
|
||||
return _certificate!!
|
||||
}
|
||||
|
||||
private var _certificate: ImageVector? = null
|
||||
@ -0,0 +1,43 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,46 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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
|
||||
@ -0,0 +1,31 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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
|
||||
@ -0,0 +1,35 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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)
|
||||
lineToRelative(-4.47f, 4.47f)
|
||||
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.0f, -5.0f)
|
||||
arcToRelative(0.75f, 0.75f, 0.0f, true, false, -1.06f, -1.06f)
|
||||
close()
|
||||
}
|
||||
}
|
||||
return _checkmarkCircle!!
|
||||
}
|
||||
|
||||
private var _checkmarkCircle: ImageVector? = null
|
||||
@ -0,0 +1,41 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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)
|
||||
lineToRelative(-5.0f, 5.0f)
|
||||
curveToRelative(-0.3f, 0.3f, -0.77f, 0.3f, -1.06f, 0.0f)
|
||||
lineToRelative(-2.0f, -2.0f)
|
||||
arcToRelative(0.75f, 0.75f, 0.0f, true, true, 1.06f, -1.06f)
|
||||
lineToRelative(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
|
||||
@ -0,0 +1,68 @@
|
||||
|
||||
|
||||
package com.konyaco.fluent.icons.filled
|
||||
|
||||
import androidx.compose.ui.graphics.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 {
|
||||
moveTo(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)
|
||||
lineToRelative(-5.42f, 5.42f)
|
||||
lineToRelative(-1.97f, -2.37f)
|
||||
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
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user