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 Capture: ImageVector get() { if (_Capture != null) { return _Capture!! } _Capture = ImageVector.Builder( name = "Capture", 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(160f, 800f) quadToRelative(-33f, 0f, -56.5f, -23.5f) reflectiveQuadTo(80f, 720f) verticalLineToRelative(-480f) quadToRelative(0f, -33f, 23.5f, -56.5f) reflectiveQuadTo(160f, 160f) horizontalLineToRelative(640f) quadToRelative(33f, 0f, 56.5f, 23.5f) reflectiveQuadTo(880f, 240f) verticalLineToRelative(480f) quadToRelative(0f, 33f, -23.5f, 56.5f) reflectiveQuadTo(800f, 800f) close() moveToRelative(0f, -80f) horizontalLineToRelative(640f) verticalLineToRelative(-480f) horizontalLineTo(160f) close() moveToRelative(80f, -80f) horizontalLineToRelative(480f) verticalLineToRelative(-320f) horizontalLineTo(240f) close() moveToRelative(-80f, 80f) verticalLineToRelative(-480f) close() } }.build() return _Capture!! } private var _Capture: ImageVector? = null