All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.composables.icons.lucide.Rocket.kt Maven / Gradle / Ivy

Go to download

Unstyled, fully accesible Compose Multiplatform components that you can customize to your heart's desire.

There is a newer version: 1.0.0
Show newest version
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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy