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 = "Format_bold", 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(272f, 760f) verticalLineToRelative(-560f) horizontalLineToRelative(221f) quadToRelative(65f, 0f, 120f, 40f) reflectiveQuadToRelative(55f, 111f) quadToRelative(0f, 51f, -23f, 78.5f) reflectiveQuadTo(602f, 469f) quadToRelative(25f, 11f, 55.5f, 41f) reflectiveQuadToRelative(30.5f, 90f) quadToRelative(0f, 89f, -65f, 124.5f) reflectiveQuadTo(501f, 760f) close() moveToRelative(121f, -112f) horizontalLineToRelative(104f) quadToRelative(48f, 0f, 58.5f, -24.5f) reflectiveQuadTo(566f, 588f) reflectiveQuadToRelative(-10.5f, -35.5f) reflectiveQuadTo(494f, 528f) horizontalLineTo(393f) close() moveToRelative(0f, -228f) horizontalLineToRelative(93f) quadToRelative(33f, 0f, 48f, -17f) reflectiveQuadToRelative(15f, -38f) quadToRelative(0f, -24f, -17f, -39f) reflectiveQuadToRelative(-44f, -15f) horizontalLineToRelative(-95f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null