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 Slab_serif: ImageVector get() { if (_Slab_serif != null) { return _Slab_serif!! } _Slab_serif = ImageVector.Builder( name = "Slab_serif", 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(230f, 720f) horizontalLineToRelative(206f) verticalLineToRelative(-70f) horizontalLineToRelative(-87f) lineToRelative(31f, -80f) horizontalLineToRelative(194f) lineToRelative(30f, 80f) horizontalLineToRelative(-85f) verticalLineToRelative(70f) horizontalLineToRelative(211f) verticalLineToRelative(-70f) horizontalLineToRelative(-40f) lineTo(528f, 240f) horizontalLineToRelative(-95f) lineTo(270f, 650f) horizontalLineToRelative(-40f) close() moveToRelative(175f, -215f) lineToRelative(68f, -177f) horizontalLineToRelative(7f) lineToRelative(68f, 177f) close() moveTo(160f, 880f) quadToRelative(-33f, 0f, -56.5f, -23.5f) reflectiveQuadTo(80f, 800f) verticalLineToRelative(-640f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(160f, 80f) horizontalLineToRelative(640f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(880f, 160f) verticalLineToRelative(640f) quadToRelative(0f, 33f, -23.5f, 56.5f) reflectiveQuadTo(800f, 880f) close() moveToRelative(0f, -80f) horizontalLineToRelative(640f) verticalLineToRelative(-640f) horizontalLineTo(160f) close() moveToRelative(0f, 0f) verticalLineToRelative(-640f) close() } }.build() return _Slab_serif!! } private var _Slab_serif: ImageVector? = null