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 = "FiletypeTtf", 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.EvenOdd ) { moveTo(14f, 4.5f) verticalLineTo(14f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2f, 2f) horizontalLineToRelative(-2f) verticalLineToRelative(-1f) horizontalLineToRelative(2f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1f, -1f) verticalLineTo(4.5f) horizontalLineToRelative(-2f) arcTo(1.5f, 1.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 9.5f, 3f) verticalLineTo(1f) horizontalLineTo(4f) arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, -1f, 1f) verticalLineToRelative(9f) horizontalLineTo(2f) verticalLineTo(2f) arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, -2f) horizontalLineToRelative(5.5f) close() moveTo(1.928f, 15.849f) verticalLineToRelative(-3.337f) horizontalLineToRelative(2.269f) verticalLineToRelative(3.337f) horizontalLineToRelative(0.794f) verticalLineToRelative(-3.337f) horizontalLineToRelative(1.137f) verticalLineToRelative(-0.662f) horizontalLineTo(0f) verticalLineToRelative(0.662f) horizontalLineToRelative(1.134f) verticalLineToRelative(3.337f) close() moveToRelative(5.315f, -1.59f) verticalLineToRelative(1.59f) horizontalLineToRelative(-0.791f) verticalLineTo(11.85f) horizontalLineTo(9f) verticalLineToRelative(0.653f) horizontalLineTo(7.243f) verticalLineToRelative(1.117f) horizontalLineToRelative(1.605f) verticalLineToRelative(0.638f) close() } }.build() return _undefined!! } private var _undefined: ImageVector? = null