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 = "PointerOff", 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(10f, 4.5f) verticalLineTo(4f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2.41f, -1.957f) } 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(13.9f, 8.4f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -1.26f, -1.295f) } 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(21.7f, 16.2f) arcTo(8f, 8f, 0f, isMoreThanHalf = false, isPositiveArc = false, 22f, 14f) verticalLineToRelative(-3f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = true, isPositiveArc = false, -4f, 0f) verticalLineToRelative(-1f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -3.63f, -1.158f) } 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(7f, 15f) lineToRelative(-1.8f, -1.8f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2.79f, 2.86f) lineTo(6f, 19.7f) arcToRelative(7.74f, 7.74f, 0f, isMoreThanHalf = false, isPositiveArc = false, 6f, 2.3f) horizontalLineToRelative(2f) arcToRelative(8f, 8f, 0f, isMoreThanHalf = false, isPositiveArc = false, 5.657f, -2.343f) } 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, 6f) verticalLineToRelative(8f) } 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(2f, 2f) lineToRelative(20f, 20f) } }.build() return _undefined!! } private var _undefined: ImageVector? = null