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.CandyOff.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.CandyOff: ImageVector
get() {
if (_CandyOff != null) {
return _CandyOff!!
}
_CandyOff = ImageVector.Builder(
name = "CandyOff",
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(8.5f, 8.5f)
lineToRelative(-1f, 1f)
arcToRelative(4.95f, 4.95f, 0f, isMoreThanHalf = false, isPositiveArc = false, 7f, 7f)
lineToRelative(1f, -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(11.843f, 6.187f)
arcTo(4.947f, 4.947f, 0f, isMoreThanHalf = false, isPositiveArc = true, 16.5f, 7.5f)
arcToRelative(4.947f, 4.947f, 0f, isMoreThanHalf = false, isPositiveArc = true, 1.313f, 4.657f)
}
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, 16.5f)
verticalLineTo(14f)
}
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(1.843f)
}
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, 10f)
verticalLineToRelative(7.5f)
}
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.367f, 0.683f)
arcTo(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, 19.708f, 3f)
horizontalLineTo(21f)
verticalLineToRelative(1.292f)
arcToRelative(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0.317f, 1.341f)
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.367f, -0.683f)
arcTo(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, 4.292f, 21f)
horizontalLineTo(3f)
verticalLineToRelative(-1.292f)
arcToRelative(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, -0.317f, -1.341f)
lineTo(2f, 17f)
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(2f, 2f)
lineTo(22f, 22f)
}
}.build()
return _CandyOff!!
}
private var _CandyOff: ImageVector? = null