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 Blur_medium: ImageVector get() { if (_Blur_medium != null) { return _Blur_medium!! } _Blur_medium = ImageVector.Builder( name = "Blur_medium", 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(600f, 680f) horizontalLineTo(280f) verticalLineToRelative(-80f) horizontalLineToRelative(160f) quadToRelative(-14f, -17f, -22.5f, -37.5f) reflectiveQuadTo(404f, 520f) horizontalLineTo(180f) verticalLineToRelative(-80f) horizontalLineToRelative(224f) quadToRelative(5f, -22f, 13.5f, -42.5f) reflectiveQuadTo(440f, 360f) horizontalLineTo(160f) verticalLineToRelative(-80f) horizontalLineToRelative(440f) quadToRelative(83f, 0f, 141.5f, 58.5f) reflectiveQuadTo(800f, 480f) reflectiveQuadToRelative(-58.5f, 141.5f) reflectiveQuadTo(600f, 680f) moveToRelative(0f, -80f) quadToRelative(50f, 0f, 85f, -35f) reflectiveQuadToRelative(35f, -85f) reflectiveQuadToRelative(-35f, -85f) reflectiveQuadToRelative(-85f, -35f) reflectiveQuadToRelative(-85f, 35f) reflectiveQuadToRelative(-35f, 85f) reflectiveQuadToRelative(35f, 85f) reflectiveQuadToRelative(85f, 35f) moveToRelative(-440f, 80f) verticalLineToRelative(-80f) horizontalLineToRelative(80f) verticalLineToRelative(80f) close() } }.build() return _Blur_medium!! } private var _Blur_medium: ImageVector? = null