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.Candy.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.Candy: ImageVector
get() {
if (_Candy != null) {
return _Candy!!
}
_Candy = ImageVector.Builder(
name = "Candy",
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.5f, 7.5f)
lineToRelative(-2f, 2f)
arcToRelative(4.95f, 4.95f, 0f, isMoreThanHalf = true, isPositiveArc = false, 7f, 7f)
lineToRelative(2f, -2f)
arcToRelative(4.95f, 4.95f, 0f, isMoreThanHalf = true, isPositiveArc = false, -7f, -7f)
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(14f, 6.5f)
verticalLineToRelative(10f)
}
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(10f, 7.5f)
verticalLineToRelative(10f)
}
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(16f, 7f)
lineToRelative(1f, -5f)
lineToRelative(1.37f, 0.68f)
arcTo(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, 19.7f, 3f)
horizontalLineTo(21f)
verticalLineToRelative(1.3f)
curveToRelative(0f, 0.46f, 0.1f, 0.92f, 0.32f, 1.33f)
lineTo(22f, 7f)
lineToRelative(-5f, 1f)
}
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(8f, 17f)
lineToRelative(-1f, 5f)
lineToRelative(-1.37f, -0.68f)
arcTo(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, 4.3f, 21f)
horizontalLineTo(3f)
verticalLineToRelative(-1.3f)
arcToRelative(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, -0.32f, -1.33f)
lineTo(2f, 17f)
lineToRelative(5f, -1f)
}
}.build()
return _Candy!!
}
private var _Candy: ImageVector? = null