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 = "Home_repair_service", defaultWidth = 24.dp, defaultHeight = 24.dp, viewportWidth = 960f, viewportHeight = 960f ).apply { path( fill = SolidColor(Color.Black), fillAlpha = 1.0f, stroke = null, strokeAlpha = 1.0f, strokeLineWidth = 1.0f, strokeLineCap = StrokeCap.Butt, strokeLineJoin = StrokeJoin.Miter, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(80f, 800f) verticalLineToRelative(-400f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(160f, 320f) horizontalLineToRelative(120f) verticalLineToRelative(-80f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(360f, 160f) horizontalLineToRelative(240f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(680f, 240f) verticalLineToRelative(80f) horizontalLineToRelative(120f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(880f, 400f) verticalLineToRelative(400f) close() moveToRelative(240f, -200f) verticalLineToRelative(40f) horizontalLineToRelative(-80f) verticalLineToRelative(-40f) horizontalLineToRelative(-80f) verticalLineToRelative(120f) horizontalLineToRelative(640f) verticalLineToRelative(-120f) horizontalLineToRelative(-80f) verticalLineToRelative(40f) horizontalLineToRelative(-80f) verticalLineToRelative(-40f) close() moveTo(160f, 400f) verticalLineToRelative(120f) horizontalLineToRelative(80f) verticalLineToRelative(-40f) horizontalLineToRelative(80f) verticalLineToRelative(40f) horizontalLineToRelative(320f) verticalLineToRelative(-40f) horizontalLineToRelative(80f) verticalLineToRelative(40f) horizontalLineToRelative(80f) verticalLineToRelative(-120f) close() moveToRelative(200f, -80f) horizontalLineToRelative(240f) verticalLineToRelative(-80f) horizontalLineTo(360f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null