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 = "Add_diamond",
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(440f, 640f)
horizontalLineToRelative(80f)
verticalLineToRelative(-120f)
horizontalLineToRelative(120f)
verticalLineToRelative(-80f)
horizontalLineTo(520f)
verticalLineToRelative(-120f)
horizontalLineToRelative(-80f)
verticalLineToRelative(120f)
horizontalLineTo(320f)
verticalLineToRelative(80f)
horizontalLineToRelative(120f)
close()
moveToRelative(40f, 240f)
quadToRelative(-16f, 0f, -30.5f, -5.5f)
reflectiveQuadTo(424f, 857f)
lineTo(105f, 537f)
quadToRelative(-11f, -12f, -18f, -26.5f)
reflectiveQuadTo(80f, 480f)
reflectiveQuadToRelative(7f, -30.5f)
reflectiveQuadToRelative(18f, -25.5f)
lineToRelative(319f, -320f)
quadToRelative(12f, -12f, 26f, -18f)
reflectiveQuadToRelative(30f, -6f)
reflectiveQuadToRelative(31f, 6f)
reflectiveQuadToRelative(26f, 18f)
lineToRelative(318f, 320f)
quadToRelative(11f, 12f, 18f, 26f)
reflectiveQuadToRelative(7f, 30f)
reflectiveQuadToRelative(-6.5f, 30.5f)
reflectiveQuadTo(855f, 537f)
lineTo(537f, 857f)
quadToRelative(-11f, 11f, -26f, 17f)
reflectiveQuadToRelative(-31f, 6f)
moveToRelative(0f, -80f)
lineToRelative(319f, -320f)
lineToRelative(-319f, -320f)
lineToRelative(-319f, 320f)
close()
moveToRelative(0f, -320f)
}
}.build()
return _undefined!!
}
private var _undefined: ImageVector? = null