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.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