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 undefined: ImageVector get() { if (_undefined != null) { return _undefined!! } _undefined = 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 _undefined!! } private var _undefined: ImageVector? = null