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 = "Beenhere",
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, 920f)
lineTo(192f, 704f)
quadToRelative(-15f, -11f, -23.5f, -28f)
reflectiveQuadToRelative(-8.5f, -36f)
verticalLineToRelative(-480f)
quadToRelative(0f, -33f, 23.5f, -56.5f)
reflectiveQuadTo(240f, 80f)
horizontalLineToRelative(480f)
quadToRelative(33f, 0f, 56.5f, 23.5f)
reflectiveQuadTo(800f, 160f)
verticalLineToRelative(480f)
quadToRelative(0f, 19f, -8.5f, 36f)
reflectiveQuadTo(768f, 704f)
close()
moveToRelative(0f, -100f)
lineToRelative(240f, -180f)
verticalLineToRelative(-480f)
horizontalLineTo(240f)
verticalLineToRelative(480f)
close()
moveToRelative(-42f, -220f)
lineToRelative(226f, -226f)
lineToRelative(-56f, -58f)
lineToRelative(-170f, 170f)
lineToRelative(-84f, -84f)
lineToRelative(-58f, 56f)
close()
moveToRelative(42f, -440f)
horizontalLineTo(240f)
horizontalLineToRelative(480f)
close()
}
}.build()
return _undefined!!
}
private var _undefined: ImageVector? = null