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 = "Icon20mp", 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(260f, 460f) horizontalLineToRelative(180f) verticalLineToRelative(-60f) horizontalLineTo(320f) verticalLineToRelative(-40f) horizontalLineToRelative(80f) quadToRelative(17f, 0f, 28.5f, -11.5f) reflectiveQuadTo(440f, 320f) verticalLineToRelative(-60f) quadToRelative(0f, -17f, -11.5f, -28.5f) reflectiveQuadTo(400f, 220f) horizontalLineTo(260f) verticalLineToRelative(60f) horizontalLineToRelative(120f) verticalLineToRelative(40f) horizontalLineToRelative(-80f) quadToRelative(-17f, 0f, -28.5f, 11.5f) reflectiveQuadTo(260f, 360f) close() moveToRelative(300f, 0f) horizontalLineToRelative(100f) quadToRelative(17f, 0f, 28.5f, -11.5f) reflectiveQuadTo(700f, 420f) verticalLineToRelative(-160f) quadToRelative(0f, -17f, -11.5f, -28.5f) reflectiveQuadTo(660f, 220f) horizontalLineTo(560f) quadToRelative(-17f, 0f, -28.5f, 11.5f) reflectiveQuadTo(520f, 260f) verticalLineToRelative(160f) quadToRelative(0f, 17f, 11.5f, 28.5f) reflectiveQuadTo(560f, 460f) moveToRelative(20f, -60f) verticalLineToRelative(-120f) horizontalLineToRelative(60f) verticalLineToRelative(120f) close() moveTo(240f, 740f) horizontalLineToRelative(60f) verticalLineToRelative(-180f) horizontalLineToRelative(40f) verticalLineToRelative(120f) horizontalLineToRelative(60f) verticalLineToRelative(-120f) horizontalLineToRelative(40f) verticalLineToRelative(180f) horizontalLineToRelative(60f) verticalLineToRelative(-200f) quadToRelative(0f, -17f, -11.5f, -28.5f) reflectiveQuadTo(460f, 500f) horizontalLineTo(280f) quadToRelative(-17f, 0f, -28.5f, 11.5f) reflectiveQuadTo(240f, 540f) close() moveToRelative(300f, 0f) horizontalLineToRelative(60f) verticalLineToRelative(-60f) horizontalLineToRelative(80f) quadToRelative(17f, 0f, 28.5f, -11.5f) reflectiveQuadTo(720f, 640f) verticalLineToRelative(-100f) quadToRelative(0f, -17f, -11.5f, -28.5f) reflectiveQuadTo(680f, 500f) horizontalLineTo(540f) close() moveToRelative(60f, -120f) verticalLineToRelative(-60f) horizontalLineToRelative(60f) verticalLineToRelative(60f) close() moveTo(200f, 840f) quadToRelative(-33f, 0f, -56.5f, -23.5f) reflectiveQuadTo(120f, 760f) verticalLineToRelative(-560f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(200f, 120f) horizontalLineToRelative(560f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(840f, 200f) verticalLineToRelative(560f) quadToRelative(0f, 33f, -23.5f, 56.5f) reflectiveQuadTo(760f, 840f) close() moveToRelative(0f, -80f) horizontalLineToRelative(560f) verticalLineToRelative(-560f) horizontalLineTo(200f) close() moveToRelative(0f, -560f) verticalLineToRelative(560f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null