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.EggOff.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.EggOff: ImageVector
get() {
if (_EggOff != null) {
return _EggOff!!
}
_EggOff = ImageVector.Builder(
name = "EggOff",
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(6.399f, 6.399f)
curveTo(5.362f, 8.157f, 4.65f, 10.189f, 4.5f, 12f)
curveToRelative(-0.37f, 4.43f, 1.27f, 9.95f, 7.5f, 10f)
curveToRelative(3.256f, -0.026f, 5.259f, -1.547f, 6.375f, -3.625f)
}
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(19.532f, 13.875f)
arcTo(14.07f, 14.07f, 0f, isMoreThanHalf = false, isPositiveArc = false, 19.5f, 12f)
curveToRelative(-0.36f, -4.34f, -3.95f, -9.96f, -7.5f, -10f)
curveToRelative(-1.04f, 0.012f, -2.082f, 0.502f, -3.046f, 1.297f)
}
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 _EggOff!!
}
private var _EggOff: ImageVector? = null