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 = "Sprout", 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(7f, 20f) horizontalLineToRelative(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, 20f) curveToRelative(5.5f, -2.5f, 0.8f, -6.4f, 3f, -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(9.5f, 9.4f) curveToRelative(1.1f, 0.8f, 1.8f, 2.2f, 2.3f, 3.7f) curveToRelative(-2f, 0.4f, -3.5f, 0.4f, -4.8f, -0.3f) curveToRelative(-1.2f, -0.6f, -2.3f, -1.9f, -3f, -4.2f) curveToRelative(2.8f, -0.5f, 4.4f, 0f, 5.5f, 0.8f) 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(14.1f, 6f) arcToRelative(7f, 7f, 0f, isMoreThanHalf = false, isPositiveArc = false, -1.1f, 4f) curveToRelative(1.9f, -0.1f, 3.3f, -0.6f, 4.3f, -1.4f) curveToRelative(1f, -1f, 1.6f, -2.3f, 1.7f, -4.6f) curveToRelative(-2.7f, 0.1f, -4f, 1f, -4.9f, 2f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null