commonMain.compose.icons.simpleicons.Playstationvita.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-icons Show documentation
Show all versions of simple-icons Show documentation
Compose icons is a set of open source icons packs for Compose Multiplatform
The newest version!
package compose.icons.simpleicons
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt
import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.ImageVector.Builder
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import compose.icons.SimpleIcons
public val SimpleIcons.Playstationvita: ImageVector
get() {
if (_playstationvita != null) {
return _playstationvita!!
}
_playstationvita = Builder(name = "Playstationvita", defaultWidth = 24.0.dp, defaultHeight =
24.0.dp, viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(3.176f, 12.216f)
lineTo(1.274f, 12.216f)
curveToRelative(-0.26f, 0.0f, -0.453f, 0.198f, -0.453f, 0.538f)
verticalLineToRelative(1.235f)
lineTo(0.0f, 13.989f)
verticalLineToRelative(-1.19f)
curveToRelative(0.0f, -0.668f, 0.42f, -1.119f, 1.014f, -1.119f)
horizontalLineToRelative(1.924f)
curveToRelative(0.471f, -0.018f, 0.584f, -0.252f, 0.584f, -0.592f)
curveToRelative(0.0f, -0.26f, -0.13f, -0.616f, -0.584f, -0.58f)
lineTo(0.0f, 10.508f)
verticalLineToRelative(-0.49f)
horizontalLineToRelative(3.176f)
curveToRelative(0.832f, 0.0f, 1.16f, 0.481f, 1.16f, 1.07f)
curveToRelative(0.0f, 0.669f, -0.328f, 1.128f, -1.16f, 1.128f)
close()
moveTo(6.664f, 11.094f)
verticalLineToRelative(1.813f)
curveToRelative(0.0f, 0.663f, -0.299f, 1.076f, -1.126f, 1.076f)
lineTo(3.761f, 13.983f)
verticalLineToRelative(-0.49f)
horizontalLineToRelative(1.55f)
curveToRelative(0.318f, 0.0f, 0.507f, -0.258f, 0.507f, -0.586f)
verticalLineToRelative(-1.813f)
curveToRelative(0.0f, -0.578f, 0.28f, -1.077f, 1.102f, -1.077f)
horizontalLineToRelative(1.765f)
verticalLineToRelative(0.49f)
lineTo(7.158f, 10.507f)
curveToRelative(-0.412f, -0.017f, -0.494f, 0.32f, -0.494f, 0.587f)
close()
moveTo(11.504f, 13.998f)
curveToRelative(-0.331f, -0.018f, -0.47f, -0.27f, -0.532f, -0.377f)
curveToRelative(-0.063f, -0.107f, -1.92f, -3.609f, -1.92f, -3.609f)
horizontalLineToRelative(0.924f)
lineToRelative(1.538f, 2.855f)
curveToRelative(0.08f, 0.16f, 0.262f, 0.2f, 0.36f, 0.012f)
lineToRelative(1.53f, -2.867f)
horizontalLineToRelative(0.577f)
reflectiveCurveToRelative(-1.798f, 3.404f, -1.87f, 3.52f)
curveToRelative(-0.071f, 0.117f, -0.276f, 0.484f, -0.607f, 0.466f)
close()
moveTo(14.509f, 10.026f)
horizontalLineToRelative(0.84f)
verticalLineToRelative(3.96f)
horizontalLineToRelative(-0.84f)
close()
moveTo(18.279f, 10.486f)
lineToRelative(0.003f, 3.477f)
horizontalLineToRelative(-0.826f)
lineTo(17.456f, 10.49f)
lineToRelative(-1.57f, -0.002f)
verticalLineToRelative(-0.483f)
lineTo(19.859f, 10.0f)
lineToRelative(-0.002f, 0.489f)
close()
moveTo(21.514f, 10.005f)
curveToRelative(-0.314f, 0.005f, -0.51f, 0.354f, -0.579f, 0.467f)
curveToRelative(-0.071f, 0.116f, -1.873f, 3.527f, -1.873f, 3.527f)
horizontalLineToRelative(0.578f)
lineToRelative(0.44f, -0.84f)
horizontalLineToRelative(2.541f)
lineToRelative(0.454f, 0.84f)
lineTo(24.0f, 13.999f)
reflectiveCurveToRelative(-1.86f, -3.508f, -1.923f, -3.616f)
curveToRelative(-0.062f, -0.107f, -0.201f, -0.36f, -0.533f, -0.378f)
horizontalLineToRelative(-0.03f)
close()
moveTo(21.334f, 11.001f)
curveToRelative(0.078f, -0.005f, 0.155f, 0.047f, 0.2f, 0.138f)
lineToRelative(0.825f, 1.525f)
horizontalLineToRelative(-2.004f)
lineToRelative(0.818f, -1.538f)
curveToRelative(0.043f, -0.082f, 0.102f, -0.12f, 0.162f, -0.125f)
close()
}
}
.build()
return _playstationvita!!
}
private var _playstationvita: ImageVector? = null