commonMain.compose.icons.simpleicons.Alpinelinux.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.Alpinelinux: ImageVector
get() {
if (_alpinelinux != null) {
return _alpinelinux!!
}
_alpinelinux = Builder(name = "Alpinelinux", 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(5.998f, 1.607f)
lineTo(0.0f, 12.0f)
lineToRelative(5.998f, 10.393f)
horizontalLineToRelative(12.004f)
lineTo(24.0f, 12.0f)
lineTo(18.002f, 1.607f)
lineTo(5.998f, 1.607f)
close()
moveTo(9.965f, 7.12f)
lineTo(12.66f, 9.9f)
lineToRelative(1.598f, 1.595f)
lineToRelative(0.002f, -0.002f)
lineToRelative(2.41f, 2.363f)
curveToRelative(-0.2f, 0.14f, -0.386f, 0.252f, -0.563f, 0.344f)
arcToRelative(3.756f, 3.756f, 0.0f, false, true, -0.496f, 0.217f)
arcToRelative(2.702f, 2.702f, 0.0f, false, true, -0.425f, 0.111f)
curveToRelative(-0.131f, 0.023f, -0.25f, 0.034f, -0.358f, 0.034f)
curveToRelative(-0.13f, 0.0f, -0.242f, -0.014f, -0.338f, -0.034f)
arcToRelative(1.317f, 1.317f, 0.0f, false, true, -0.24f, -0.072f)
arcToRelative(0.95f, 0.95f, 0.0f, false, true, -0.2f, -0.113f)
lineToRelative(-1.062f, -1.092f)
lineToRelative(-3.039f, -3.041f)
lineToRelative(-1.1f, 1.053f)
lineToRelative(-3.07f, 3.072f)
arcToRelative(0.974f, 0.974f, 0.0f, false, true, -0.2f, 0.111f)
arcToRelative(1.274f, 1.274f, 0.0f, false, true, -0.237f, 0.073f)
curveToRelative(-0.096f, 0.02f, -0.209f, 0.033f, -0.338f, 0.033f)
curveToRelative(-0.108f, 0.0f, -0.227f, -0.009f, -0.358f, -0.031f)
arcToRelative(2.7f, 2.7f, 0.0f, false, true, -0.425f, -0.114f)
arcToRelative(3.748f, 3.748f, 0.0f, false, true, -0.496f, -0.217f)
arcToRelative(5.228f, 5.228f, 0.0f, false, true, -0.563f, -0.343f)
lineToRelative(6.803f, -6.727f)
close()
moveTo(14.685f, 7.905f)
lineToRelative(4.579f, 4.598f)
lineToRelative(1.382f, 1.353f)
arcToRelative(5.24f, 5.24f, 0.0f, false, true, -0.564f, 0.344f)
arcToRelative(3.73f, 3.73f, 0.0f, false, true, -0.494f, 0.217f)
arcToRelative(2.697f, 2.697f, 0.0f, false, true, -0.426f, 0.111f)
curveToRelative(-0.13f, 0.023f, -0.251f, 0.034f, -0.36f, 0.034f)
curveToRelative(-0.129f, 0.0f, -0.241f, -0.014f, -0.337f, -0.034f)
arcToRelative(1.285f, 1.285f, 0.0f, false, true, -0.385f, -0.146f)
curveToRelative(-0.033f, -0.02f, -0.05f, -0.036f, -0.053f, -0.04f)
lineToRelative(-1.232f, -1.218f)
lineToRelative(-2.111f, -2.111f)
lineToRelative(-0.334f, 0.334f)
lineTo(12.79f, 9.8f)
lineToRelative(1.896f, -1.897f)
close()
moveTo(8.719f, 12.025f)
verticalLineToRelative(2.529f)
arcToRelative(2.128f, 2.128f, 0.0f, false, true, -0.356f, -0.035f)
arcToRelative(2.765f, 2.765f, 0.0f, false, true, -0.422f, -0.116f)
arcToRelative(3.708f, 3.708f, 0.0f, false, true, -0.488f, -0.214f)
arcToRelative(5.217f, 5.217f, 0.0f, false, true, -0.555f, -0.34f)
lineToRelative(1.82f, -1.825f)
close()
}
}
.build()
return _alpinelinux!!
}
private var _alpinelinux: ImageVector? = null