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.Rocket.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.Rocket: ImageVector
get() {
if (_Rocket != null) {
return _Rocket!!
}
_Rocket = ImageVector.Builder(
name = "Rocket",
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(4.5f, 16.5f)
curveToRelative(-1.5f, 1.26f, -2f, 5f, -2f, 5f)
reflectiveCurveToRelative(3.74f, -0.5f, 5f, -2f)
curveToRelative(0.71f, -0.84f, 0.7f, -2.13f, -0.09f, -2.91f)
arcToRelative(2.18f, 2.18f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2.91f, -0.09f)
close()
}
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(12f, 15f)
lineToRelative(-3f, -3f)
arcToRelative(22f, 22f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, -3.95f)
arcTo(12.88f, 12.88f, 0f, isMoreThanHalf = false, isPositiveArc = true, 22f, 2f)
curveToRelative(0f, 2.72f, -0.78f, 7.5f, -6f, 11f)
arcToRelative(22.35f, 22.35f, 0f, isMoreThanHalf = false, isPositiveArc = true, -4f, 2f)
close()
}
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(9f, 12f)
horizontalLineTo(4f)
reflectiveCurveToRelative(0.55f, -3.03f, 2f, -4f)
curveToRelative(1.62f, -1.08f, 5f, 0f, 5f, 0f)
}
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(12f, 15f)
verticalLineToRelative(5f)
reflectiveCurveToRelative(3.03f, -0.55f, 4f, -2f)
curveToRelative(1.08f, -1.62f, 0f, -5f, 0f, -5f)
}
}.build()
return _Rocket!!
}
private var _Rocket: ImageVector? = null