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 = "Highlights", defaultWidth = 16.dp, defaultHeight = 16.dp, viewportWidth = 16f, viewportHeight = 16f ).apply { path( fill = SolidColor(Color(0xFF000000)), fillAlpha = 1.0f, stroke = null, strokeAlpha = 1.0f, strokeLineWidth = 1.0f, strokeLineCap = StrokeCap.Butt, strokeLineJoin = StrokeJoin.Miter, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(16f, 8f) arcTo(8f, 8f, 0f, isMoreThanHalf = true, isPositiveArc = false, 0f, 8f) arcToRelative(8f, 8f, 0f, isMoreThanHalf = false, isPositiveArc = false, 16f, 0f) moveToRelative(-8f, 5f) verticalLineToRelative(1f) horizontalLineTo(4.5f) arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, -0.093f, 0.009f) arcTo(7f, 7f, 0f, isMoreThanHalf = false, isPositiveArc = true, 3.1f, 13f) close() moveToRelative(0f, -1f) horizontalLineTo(2.255f) arcToRelative(7f, 7f, 0f, isMoreThanHalf = false, isPositiveArc = true, -0.581f, -1f) horizontalLineTo(8f) close() moveToRelative(-6.71f, -2f) arcToRelative(7f, 7f, 0f, isMoreThanHalf = false, isPositiveArc = true, -0.22f, -1f) horizontalLineTo(8f) verticalLineToRelative(1f) close() moveTo(1f, 8f) quadToRelative(0f, -0.51f, 0.07f, -1f) horizontalLineTo(8f) verticalLineToRelative(1f) close() moveToRelative(0.29f, -2f) quadToRelative(0.155f, -0.519f, 0.384f, -1f) horizontalLineTo(8f) verticalLineToRelative(1f) close() moveToRelative(0.965f, -2f) quadToRelative(0.377f, -0.54f, 0.846f, -1f) horizontalLineTo(8f) verticalLineToRelative(1f) close() moveToRelative(2.137f, -2f) arcTo(6.97f, 6.97f, 0f, isMoreThanHalf = false, isPositiveArc = true, 8f, 1f) verticalLineToRelative(1f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null