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 = "Opencollective", defaultWidth = 16.dp, defaultHeight = 16.dp, viewportWidth = 16f, viewportHeight = 16f ).apply { path( fill = SolidColor(Color(0xFF000000)), fillAlpha = 1.0f, stroke = null, strokeAlpha = 1.0f, strokeLineWidth = 1.0f, strokeLineCap = StrokeCap.Butt, strokeLineJoin = StrokeJoin.Miter, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(12.995f, 8.195f) curveToRelative(0f, 0.937f, -0.312f, 1.912f, -0.78f, 2.693f) lineToRelative(1.99f, 1.99f) curveToRelative(0.976f, -1.327f, 1.6f, -2.966f, 1.6f, -4.683f) curveToRelative(0f, -1.795f, -0.624f, -3.434f, -1.561f, -4.76f) lineToRelative(-2.068f, 2.028f) curveToRelative(0.468f, 0.781f, 0.78f, 1.679f, 0.78f, 2.732f) close() } path( fill = SolidColor(Color(0xFF000000)), fillAlpha = 1.0f, stroke = null, strokeAlpha = 1.0f, strokeLineWidth = 1.0f, strokeLineCap = StrokeCap.Butt, strokeLineJoin = StrokeJoin.Miter, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(8f, 13.151f) arcToRelative(4.995f, 4.995f, 0f, isMoreThanHalf = true, isPositiveArc = true, 0f, -9.99f) curveToRelative(1.015f, 0f, 1.951f, 0.273f, 2.732f, 0.82f) lineToRelative(1.95f, -2.03f) arcToRelative(7.805f, 7.805f, 0f, isMoreThanHalf = true, isPositiveArc = false, 0.04f, 12.449f) lineToRelative(-1.951f, -2.03f) arcToRelative(5.07f, 5.07f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2.732f, 0.781f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null