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 = "All_inbox", 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(320f, 640f) horizontalLineToRelative(480f) verticalLineToRelative(-120f) horizontalLineTo(698f) quadToRelative(-21f, 37f, -58f, 58.5f) reflectiveQuadTo(560f, 600f) quadToRelative(-42f, 0f, -79f, -21.5f) reflectiveQuadTo(422f, 520f) horizontalLineTo(320f) close() moveToRelative(240f, -120f) quadToRelative(34f, 0f, 57f, -23.5f) reflectiveQuadToRelative(23f, -56.5f) horizontalLineToRelative(160f) verticalLineToRelative(-280f) horizontalLineTo(320f) verticalLineToRelative(280f) horizontalLineToRelative(160f) quadToRelative(0f, 33f, 23.5f, 56.5f) reflectiveQuadTo(560f, 520f) moveTo(320f, 720f) quadToRelative(-33f, 0f, -56.5f, -23.5f) reflectiveQuadTo(240f, 640f) verticalLineToRelative(-480f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(320f, 80f) horizontalLineToRelative(480f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(880f, 160f) verticalLineToRelative(480f) quadToRelative(0f, 33f, -23.5f, 56.5f) reflectiveQuadTo(800f, 720f) close() moveTo(160f, 880f) quadToRelative(-33f, 0f, -56.5f, -23.5f) reflectiveQuadTo(80f, 800f) verticalLineToRelative(-560f) horizontalLineToRelative(80f) verticalLineToRelative(560f) horizontalLineToRelative(560f) verticalLineToRelative(80f) close() moveToRelative(160f, -240f) horizontalLineToRelative(480f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null