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 = "Altitude", 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(720f, 480f) verticalLineToRelative(-168f) lineToRelative(-64f, 64f) lineToRelative(-56f, -56f) lineToRelative(160f, -160f) lineToRelative(160f, 160f) lineToRelative(-56f, 57f) lineToRelative(-64f, -64f) verticalLineToRelative(167f) close() moveTo(40f, 880f) lineToRelative(240f, -320f) lineToRelative(180f, 240f) horizontalLineToRelative(300f) lineTo(560f, 534f) lineTo(460f, 666f) lineToRelative(-50f, -66f) lineToRelative(150f, -200f) lineTo(920f, 880f) close() moveToRelative(420f, -80f) } }.build() return _undefined!! } private var _undefined: ImageVector? = null