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 = "Highlighter_size_4", 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(353f, 833f) lineTo(127f, 607f) quadToRelative(-12f, -12f, -12f, -28.5f) reflectiveQuadToRelative(12f, -28.5f) lineToRelative(423f, -423f) quadToRelative(12f, -12f, 28.5f, -12f) reflectiveQuadToRelative(27.5f, 12f) lineToRelative(227f, 226f) quadToRelative(12f, 12f, 12f, 28.5f) reflectiveQuadTo(833f, 410f) lineTo(410f, 833f) quadToRelative(-12f, 12f, -28.5f, 12f) reflectiveQuadTo(353f, 833f) } }.build() return _undefined!! } private var _undefined: ImageVector? = null