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

commonMain.com.composables.icons.lucide.TrafficCone.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.TrafficCone: ImageVector
	get() {
		if (_TrafficCone != null) {
			return _TrafficCone!!
		}
		_TrafficCone = ImageVector.Builder(
            name = "TrafficCone",
            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(9.3f, 6.2f)
				arcToRelative(4.55f, 4.55f, 0f, isMoreThanHalf = false, isPositiveArc = false, 5.4f, 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(7.9f, 10.7f)
				curveToRelative(0.9f, 0.8f, 2.4f, 1.3f, 4.1f, 1.3f)
				reflectiveCurveToRelative(3.2f, -0.5f, 4.1f, -1.3f)
			}
			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(13.9f, 3.5f)
				arcToRelative(1.93f, 1.93f, 0f, isMoreThanHalf = false, isPositiveArc = false, -3.8f, -0.1f)
				lineToRelative(-3f, 10f)
				curveToRelative(-0.1f, 0.2f, -0.1f, 0.4f, -0.1f, 0.6f)
				curveToRelative(0f, 1.7f, 2.2f, 3f, 5f, 3f)
				reflectiveCurveToRelative(5f, -1.3f, 5f, -3f)
				curveToRelative(0f, -0.2f, 0f, -0.4f, -0.1f, -0.5f)
				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(7.5f, 12.2f)
				lineToRelative(-4.7f, 2.7f)
				curveToRelative(-0.5f, 0.3f, -0.8f, 0.7f, -0.8f, 1.1f)
				reflectiveCurveToRelative(0.3f, 0.8f, 0.8f, 1.1f)
				lineToRelative(7.6f, 4.5f)
				curveToRelative(0.9f, 0.5f, 2.1f, 0.5f, 3f, 0f)
				lineToRelative(7.6f, -4.5f)
				curveToRelative(0.7f, -0.3f, 1f, -0.7f, 1f, -1.1f)
				reflectiveCurveToRelative(-0.3f, -0.8f, -0.8f, -1.1f)
				lineToRelative(-4.7f, -2.8f)
			}
		}.build()
		return _TrafficCone!!
	}

private var _TrafficCone: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy