Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
commonMain.com.composables.icons.lucide.FlaskConical.kt Maven / Gradle / Ivy
package com.composables.icons.lucide
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeJoin
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
public val Lucide.FlaskConical: ImageVector
get() {
if (_FlaskConical != null) {
return _FlaskConical!!
}
_FlaskConical = ImageVector.Builder(
name = "FlaskConical",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f
).apply {
path(
fill = null,
fillAlpha = 1.0f,
stroke = SolidColor(Color(0xFF000000)),
strokeAlpha = 1.0f,
strokeLineWidth = 2f,
strokeLineCap = StrokeCap.Round,
strokeLineJoin = StrokeJoin.Round,
strokeLineMiter = 1.0f,
pathFillType = PathFillType.NonZero
) {
moveTo(10f, 2f)
verticalLineToRelative(7.527f)
arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -0.211f, 0.896f)
lineTo(4.72f, 20.55f)
arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0.9f, 1.45f)
horizontalLineToRelative(12.76f)
arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0.9f, -1.45f)
lineToRelative(-5.069f, -10.127f)
arcTo(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 14f, 9.527f)
verticalLineTo(2f)
}
path(
fill = null,
fillAlpha = 1.0f,
stroke = SolidColor(Color(0xFF000000)),
strokeAlpha = 1.0f,
strokeLineWidth = 2f,
strokeLineCap = StrokeCap.Round,
strokeLineJoin = StrokeJoin.Round,
strokeLineMiter = 1.0f,
pathFillType = PathFillType.NonZero
) {
moveTo(8.5f, 2f)
horizontalLineToRelative(7f)
}
path(
fill = null,
fillAlpha = 1.0f,
stroke = SolidColor(Color(0xFF000000)),
strokeAlpha = 1.0f,
strokeLineWidth = 2f,
strokeLineCap = StrokeCap.Round,
strokeLineJoin = StrokeJoin.Round,
strokeLineMiter = 1.0f,
pathFillType = PathFillType.NonZero
) {
moveTo(7f, 16f)
horizontalLineToRelative(10f)
}
}.build()
return _FlaskConical!!
}
private var _FlaskConical: ImageVector? = null