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 = "Label_off", 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(738f, 624f) lineToRelative(-58f, -58f) lineToRelative(62f, -86f) lineToRelative(-142f, -200f) horizontalLineTo(394f) lineToRelative(-80f, -80f) horizontalLineToRelative(286f) quadToRelative(20f, 0f, 37f, 8.5f) reflectiveQuadToRelative(29f, 25.5f) lineToRelative(174f, 246f) close() moveToRelative(54f, 280f) lineTo(638f, 750f) quadToRelative(-9f, 5f, -18f, 7.5f) reflectiveQuadToRelative(-20f, 2.5f) horizontalLineTo(200f) quadToRelative(-33f, 0f, -56.5f, -23.5f) reflectiveQuadTo(120f, 680f) verticalLineToRelative(-400f) quadToRelative(0f, -11f, 2.5f, -20f) reflectiveQuadToRelative(7.5f, -18f) lineToRelative(-74f, -74f) lineToRelative(56f, -56f) lineToRelative(736f, 736f) close() moveTo(568f, 680f) lineTo(200f, 312f) verticalLineToRelative(368f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null