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 = "Location_city", 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(120f, 840f) verticalLineToRelative(-560f) horizontalLineToRelative(240f) verticalLineToRelative(-80f) lineToRelative(120f, -120f) lineToRelative(120f, 120f) verticalLineToRelative(240f) horizontalLineToRelative(240f) verticalLineToRelative(400f) close() moveToRelative(80f, -80f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(0f, -160f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(0f, -160f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(240f, 320f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(0f, -160f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(0f, -160f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(0f, -160f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(240f, 480f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(0f, -160f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null