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 = "Battery_charging_80", 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(320f, 880f) quadToRelative(-17f, 0f, -28.5f, -11.5f) reflectiveQuadTo(280f, 840f) verticalLineToRelative(-640f) quadToRelative(0f, -17f, 11.5f, -28.5f) reflectiveQuadTo(320f, 160f) horizontalLineToRelative(80f) verticalLineToRelative(-80f) horizontalLineToRelative(160f) verticalLineToRelative(80f) horizontalLineToRelative(80f) quadToRelative(17f, 0f, 28.5f, 11.5f) reflectiveQuadTo(680f, 200f) verticalLineToRelative(280f) quadToRelative(-100f, 1f, -170f, 70.5f) reflectiveQuadTo(440f, 720f) quadToRelative(0f, 46f, 16f, 87f) reflectiveQuadToRelative(45f, 73f) close() moveToRelative(40f, -480f) horizontalLineToRelative(240f) verticalLineToRelative(-160f) horizontalLineTo(360f) close() moveTo(660f, 880f) verticalLineToRelative(-120f) horizontalLineTo(560f) lineToRelative(140f, -200f) verticalLineToRelative(120f) horizontalLineToRelative(100f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null