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 = "Business_center", 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(160f, 840f) quadToRelative(-33f, 0f, -56.5f, -23.5f) reflectiveQuadTo(80f, 760f) verticalLineToRelative(-440f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(160f, 240f) horizontalLineToRelative(160f) verticalLineToRelative(-80f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(400f, 80f) horizontalLineToRelative(160f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(640f, 160f) verticalLineToRelative(80f) horizontalLineToRelative(160f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(880f, 320f) verticalLineToRelative(440f) quadToRelative(0f, 33f, -23.5f, 56.5f) reflectiveQuadTo(800f, 840f) close() moveToRelative(240f, -600f) horizontalLineToRelative(160f) verticalLineToRelative(-80f) horizontalLineTo(400f) close() moveToRelative(400f, 360f) horizontalLineTo(600f) verticalLineToRelative(80f) horizontalLineTo(360f) verticalLineToRelative(-80f) horizontalLineTo(160f) verticalLineToRelative(160f) horizontalLineToRelative(640f) close() moveToRelative(-360f, 0f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(-80f) close() moveToRelative(-280f, -80f) horizontalLineToRelative(200f) verticalLineToRelative(-80f) horizontalLineToRelative(240f) verticalLineToRelative(80f) horizontalLineToRelative(200f) verticalLineToRelative(-200f) horizontalLineTo(160f) close() moveToRelative(320f, 40f) } }.build() return _undefined!! } private var _undefined: ImageVector? = null