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 = "Ink_highlighter", 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(544f, 560f) lineTo(440f, 456f) lineTo(240f, 656f) lineToRelative(104f, 104f) close() moveToRelative(-47f, -161f) lineToRelative(104f, 104f) lineToRelative(199f, -199f) lineToRelative(-104f, -104f) close() moveToRelative(-84f, -28f) lineToRelative(216f, 216f) lineToRelative(-229f, 229f) quadToRelative(-24f, 24f, -56f, 24f) reflectiveQuadToRelative(-56f, -24f) lineToRelative(-2f, -2f) lineToRelative(-26f, 26f) horizontalLineTo(60f) lineToRelative(126f, -126f) lineToRelative(-2f, -2f) quadToRelative(-24f, -24f, -24f, -56f) reflectiveQuadToRelative(24f, -56f) close() moveToRelative(0f, 0f) lineToRelative(227f, -227f) quadToRelative(24f, -24f, 56f, -24f) reflectiveQuadToRelative(56f, 24f) lineToRelative(104f, 104f) quadToRelative(24f, 24f, 24f, 56f) reflectiveQuadToRelative(-24f, 56f) lineTo(629f, 587f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null