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 Font_download: ImageVector
get() {
if (_Font_download != null) {
return _Font_download!!
}
_Font_download = ImageVector.Builder(
name = "Font_download",
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(256f, 720f)
horizontalLineToRelative(84f)
lineToRelative(44f, -122f)
horizontalLineToRelative(192f)
lineToRelative(44f, 122f)
horizontalLineToRelative(84f)
lineTo(522f, 240f)
horizontalLineToRelative(-84f)
close()
moveToRelative(152f, -192f)
lineToRelative(70f, -198f)
horizontalLineToRelative(4f)
lineToRelative(70f, 198f)
close()
moveTo(160f, 880f)
quadToRelative(-33f, 0f, -56.5f, -23.5f)
reflectiveQuadTo(80f, 800f)
verticalLineToRelative(-640f)
quadToRelative(0f, -33f, 23.5f, -56.5f)
reflectiveQuadTo(160f, 80f)
horizontalLineToRelative(640f)
quadToRelative(33f, 0f, 56.5f, 23.5f)
reflectiveQuadTo(880f, 160f)
verticalLineToRelative(640f)
quadToRelative(0f, 33f, -23.5f, 56.5f)
reflectiveQuadTo(800f, 880f)
close()
moveToRelative(0f, -80f)
horizontalLineToRelative(640f)
verticalLineToRelative(-640f)
horizontalLineTo(160f)
close()
moveToRelative(0f, -640f)
verticalLineToRelative(640f)
close()
}
}.build()
return _Font_download!!
}
private var _Font_download: ImageVector? = null