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 Auto_timer: ImageVector get() { if (_Auto_timer != null) { return _Auto_timer!! } _Auto_timer = ImageVector.Builder( name = "Auto_timer", 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(480f, 320f) lineToRelative(-62f, 138f) lineToRelative(-138f, 62f) lineToRelative(138f, 62f) lineToRelative(62f, 138f) lineToRelative(62f, -138f) lineToRelative(138f, -62f) lineToRelative(-138f, -62f) close() moveTo(360f, 120f) verticalLineToRelative(-80f) horizontalLineToRelative(240f) verticalLineToRelative(80f) close() moveTo(480f, 880f) quadToRelative(-74f, 0f, -139.5f, -28.5f) reflectiveQuadTo(226f, 774f) reflectiveQuadToRelative(-77.5f, -114.5f) reflectiveQuadTo(120f, 520f) reflectiveQuadToRelative(28.5f, -139.5f) reflectiveQuadTo(226f, 266f) reflectiveQuadToRelative(114.5f, -77.5f) reflectiveQuadTo(480f, 160f) quadToRelative(62f, 0f, 119f, 20f) reflectiveQuadToRelative(107f, 58f) lineToRelative(56f, -56f) lineToRelative(56f, 56f) lineToRelative(-56f, 56f) quadToRelative(38f, 50f, 58f, 107f) reflectiveQuadToRelative(20f, 119f) quadToRelative(0f, 74f, -28.5f, 139.5f) reflectiveQuadTo(734f, 774f) reflectiveQuadToRelative(-114.5f, 77.5f) reflectiveQuadTo(480f, 880f) moveToRelative(0f, -80f) quadToRelative(116f, 0f, 198f, -82f) reflectiveQuadToRelative(82f, -198f) reflectiveQuadToRelative(-82f, -198f) reflectiveQuadToRelative(-198f, -82f) reflectiveQuadToRelative(-198f, 82f) reflectiveQuadToRelative(-82f, 198f) reflectiveQuadToRelative(82f, 198f) reflectiveQuadToRelative(198f, 82f) moveToRelative(0f, -280f) } }.build() return _Auto_timer!! } private var _Auto_timer: ImageVector? = null