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.PlaneTakeoff.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.PlaneTakeoff: ImageVector
get() {
if (_PlaneTakeoff != null) {
return _PlaneTakeoff!!
}
_PlaneTakeoff = ImageVector.Builder(
name = "PlaneTakeoff",
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(2f, 22f)
horizontalLineToRelative(20f)
}
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(6.36f, 17.4f)
lineTo(4f, 17f)
lineToRelative(-2f, -4f)
lineToRelative(1.1f, -0.55f)
arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 1.8f, 0f)
lineToRelative(0.17f, 0.1f)
arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1.8f, 0f)
lineTo(8f, 12f)
lineTo(5f, 6f)
lineToRelative(0.9f, -0.45f)
arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2.09f, 0.2f)
lineToRelative(4.02f, 3f)
arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 2.1f, 0.2f)
lineToRelative(4.19f, -2.06f)
arcToRelative(2.41f, 2.41f, 0f, isMoreThanHalf = false, isPositiveArc = true, 1.73f, -0.17f)
lineTo(21f, 7f)
arcToRelative(1.4f, 1.4f, 0f, isMoreThanHalf = false, isPositiveArc = true, 0.87f, 1.99f)
lineToRelative(-0.38f, 0.76f)
curveToRelative(-0.23f, 0.46f, -0.6f, 0.84f, -1.07f, 1.08f)
lineTo(7.58f, 17.2f)
arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -1.22f, 0.18f)
close()
}
}.build()
return _PlaneTakeoff!!
}
private var _PlaneTakeoff: ImageVector? = null