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 = "CartDash", defaultWidth = 16.dp, defaultHeight = 16.dp, viewportWidth = 16f, viewportHeight = 16f ).apply { path( fill = SolidColor(Color(0xFF000000)), fillAlpha = 1.0f, stroke = null, strokeAlpha = 1.0f, strokeLineWidth = 1.0f, strokeLineCap = StrokeCap.Butt, strokeLineJoin = StrokeJoin.Miter, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(6.5f, 7f) arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, 1f) horizontalLineToRelative(4f) arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, -1f) close() } path( fill = SolidColor(Color(0xFF000000)), fillAlpha = 1.0f, stroke = null, strokeAlpha = 1.0f, strokeLineWidth = 1.0f, strokeLineCap = StrokeCap.Butt, strokeLineJoin = StrokeJoin.Miter, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(0.5f, 1f) arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, 1f) horizontalLineToRelative(1.11f) lineToRelative(0.401f, 1.607f) lineToRelative(1.498f, 7.985f) arcTo(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 4f, 12f) horizontalLineToRelative(1f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = true, isPositiveArc = false, 0f, 4f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, -4f) horizontalLineToRelative(7f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = true, isPositiveArc = false, 0f, 4f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, -4f) horizontalLineToRelative(1f) arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0.491f, -0.408f) lineToRelative(1.5f, -8f) arcTo(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 14.5f, 3f) horizontalLineTo(2.89f) lineToRelative(-0.405f, -1.621f) arcTo(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 2f, 1f) close() moveToRelative(3.915f, 10f) lineTo(3.102f, 4f) horizontalLineToRelative(10.796f) lineToRelative(-1.313f, 7f) close() moveTo(6f, 14f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = true, isPositiveArc = true, -2f, 0f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, 0f) moveToRelative(7f, 0f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = true, isPositiveArc = true, -2f, 0f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, 0f) } }.build() return _undefined!! } private var _undefined: ImageVector? = null