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 Detection_and_zone: ImageVector
get() {
if (_Detection_and_zone != null) {
return _Detection_and_zone!!
}
_Detection_and_zone = ImageVector.Builder(
name = "Detection_and_zone",
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(80f, 280f)
verticalLineToRelative(-120f)
quadToRelative(0f, -33f, 23.5f, -56.5f)
reflectiveQuadTo(160f, 80f)
horizontalLineToRelative(120f)
verticalLineToRelative(80f)
horizontalLineTo(160f)
verticalLineToRelative(120f)
close()
moveTo(280f, 880f)
horizontalLineTo(160f)
quadToRelative(-33f, 0f, -56.5f, -23.5f)
reflectiveQuadTo(80f, 800f)
verticalLineToRelative(-120f)
horizontalLineToRelative(80f)
verticalLineToRelative(120f)
horizontalLineToRelative(120f)
close()
moveToRelative(400f, 0f)
verticalLineToRelative(-80f)
horizontalLineToRelative(120f)
verticalLineToRelative(-120f)
horizontalLineToRelative(80f)
verticalLineToRelative(120f)
quadToRelative(0f, 33f, -23.5f, 56.5f)
reflectiveQuadTo(800f, 880f)
close()
moveToRelative(120f, -600f)
verticalLineToRelative(-120f)
horizontalLineTo(680f)
verticalLineToRelative(-80f)
horizontalLineToRelative(120f)
quadToRelative(33f, 0f, 56.5f, 23.5f)
reflectiveQuadTo(880f, 160f)
verticalLineToRelative(120f)
close()
moveTo(540f, 380f)
quadToRelative(-33f, 0f, -56.5f, -23.5f)
reflectiveQuadTo(460f, 300f)
reflectiveQuadToRelative(23.5f, -56.5f)
reflectiveQuadTo(540f, 220f)
reflectiveQuadToRelative(56.5f, 23.5f)
reflectiveQuadTo(620f, 300f)
reflectiveQuadToRelative(-23.5f, 56.5f)
reflectiveQuadTo(540f, 380f)
moveToRelative(-28f, 340f)
horizontalLineTo(352f)
lineToRelative(40f, -204f)
lineToRelative(-72f, 28f)
verticalLineToRelative(136f)
horizontalLineToRelative(-80f)
verticalLineToRelative(-188f)
lineToRelative(158f, -68f)
quadToRelative(35f, -15f, 51.5f, -19.5f)
reflectiveQuadTo(480f, 400f)
quadToRelative(21f, 0f, 39f, 11f)
reflectiveQuadToRelative(29f, 29f)
lineToRelative(40f, 64f)
quadToRelative(26f, 42f, 70.5f, 69f)
reflectiveQuadTo(760f, 600f)
verticalLineToRelative(80f)
quadToRelative(-66f, 0f, -123.5f, -27.5f)
reflectiveQuadTo(540f, 580f)
close()
}
}.build()
return _Detection_and_zone!!
}
private var _Detection_and_zone: ImageVector? = null