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 = "Guitar", defaultWidth = 24.dp, defaultHeight = 24.dp, viewportWidth = 24f, viewportHeight = 24f ).apply { path( fill = null, fillAlpha = 1.0f, stroke = SolidColor(Color(0xFF000000)), strokeAlpha = 1.0f, strokeLineWidth = 2f, strokeLineCap = StrokeCap.Round, strokeLineJoin = StrokeJoin.Round, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(11.9f, 12.1f) lineToRelative(4.514f, -4.514f) } path( fill = null, fillAlpha = 1.0f, stroke = SolidColor(Color(0xFF000000)), strokeAlpha = 1.0f, strokeLineWidth = 2f, strokeLineCap = StrokeCap.Round, strokeLineJoin = StrokeJoin.Round, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(20.1f, 2.3f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, -1.4f, 0f) lineToRelative(-1.114f, 1.114f) arcTo(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 17f, 4.828f) verticalLineToRelative(1.344f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -0.586f, 1.414f) arcTo(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 17.828f, 7f) horizontalLineToRelative(1.344f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1.414f, -0.586f) lineTo(21.7f, 5.3f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, -1.4f) close() } path( fill = null, fillAlpha = 1.0f, stroke = SolidColor(Color(0xFF000000)), strokeAlpha = 1.0f, strokeLineWidth = 2f, strokeLineCap = StrokeCap.Round, strokeLineJoin = StrokeJoin.Round, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(6f, 16f) lineToRelative(2f, 2f) } path( fill = null, fillAlpha = 1.0f, stroke = SolidColor(Color(0xFF000000)), strokeAlpha = 1.0f, strokeLineWidth = 2f, strokeLineCap = StrokeCap.Round, strokeLineJoin = StrokeJoin.Round, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(8.2f, 9.9f) curveTo(8.7f, 8.8f, 9.8f, 8f, 11f, 8f) curveToRelative(2.8f, 0f, 5f, 2.2f, 5f, 5f) curveToRelative(0f, 1.2f, -0.8f, 2.3f, -1.9f, 2.8f) lineToRelative(-0.9f, 0.4f) arcTo(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 12f, 18f) arcToRelative(4f, 4f, 0f, isMoreThanHalf = false, isPositiveArc = true, -4f, 4f) curveToRelative(-3.3f, 0f, -6f, -2.7f, -6f, -6f) arcToRelative(4f, 4f, 0f, isMoreThanHalf = false, isPositiveArc = true, 4f, -4f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1.8f, -1.2f) close() } path( fill = SolidColor(Color(0xFF000000)), fillAlpha = 1.0f, stroke = SolidColor(Color(0xFF000000)), strokeAlpha = 1.0f, strokeLineWidth = 2f, strokeLineCap = StrokeCap.Round, strokeLineJoin = StrokeJoin.Round, strokeLineMiter = 1.0f, pathFillType = PathFillType.NonZero ) { moveTo(12f, 12.5f) arcTo(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 11.5f, 13f) arcTo(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 11f, 12.5f) arcTo(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 12f, 12.5f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null