![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.compose.icons.simpleicons.Linuxcontainers.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.Linuxcontainers: ImageVector
get() {
if (_linuxcontainers != null) {
return _linuxcontainers!!
}
_linuxcontainers = Builder(name = "Linuxcontainers", 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(10.15f, 8.98f)
lineToRelative(1.647f, 0.951f)
lineToRelative(-5.756f, 3.345f)
lineToRelative(0.005f, -1.911f)
lineTo(10.15f, 8.98f)
close()
moveTo(11.873f, 7.979f)
lineToRelative(-1.553f, 0.902f)
lineToRelative(1.548f, 0.893f)
lineToRelative(0.005f, -1.795f)
close()
moveTo(6.028f, 5.33f)
lineTo(6.025f, 6.4f)
lineToRelative(0.543f, 0.316f)
lineToRelative(3.602f, 2.079f)
lineToRelative(1.632f, -0.948f)
lineToRelative(-2.19f, -1.279f)
lineToRelative(-3.231f, -1.887f)
lineToRelative(-0.351f, -0.203f)
lineToRelative(-0.002f, 0.852f)
close()
moveTo(6.1f, 4.347f)
lineToRelative(0.359f, 0.209f)
lineToRelative(6.321f, 3.65f)
lineToRelative(5.258f, 3.037f)
lineToRelative(5.858f, -3.405f)
lineTo(11.956f, 0.943f)
lineTo(6.1f, 4.347f)
close()
moveTo(12.102f, 16.949f)
lineToRelative(-0.005f, 1.924f)
lineToRelative(5.858f, -3.404f)
lineToRelative(0.005f, -1.924f)
lineToRelative(-5.858f, 3.404f)
close()
moveTo(12.025f, 7.94f)
lineToRelative(-0.005f, 1.922f)
lineToRelative(5.94f, 3.428f)
lineToRelative(0.005f, -1.92f)
lineToRelative(-5.94f, -3.43f)
close()
moveTo(1.895f, 8.885f)
lineToRelative(4.075f, 2.352f)
lineToRelative(4.031f, -2.342f)
lineToRelative(-4.075f, -2.353f)
lineToRelative(-4.031f, 2.343f)
close()
moveTo(24.0f, 7.982f)
lineToRelative(-5.858f, 3.404f)
lineToRelative(-0.015f, 3.982f)
lineToRelative(5.858f, -3.404f)
lineTo(24.0f, 7.982f)
close()
moveTo(11.952f, 18.022f)
lineToRelative(0.003f, -1.073f)
lineTo(7.6f, 14.436f)
lineToRelative(-1.565f, -0.903f)
verticalLineToRelative(0.001f)
lineToRelative(-0.939f, -0.542f)
lineTo(0.015f, 10.06f)
lineTo(0.01f, 11.979f)
lineToRelative(11.94f, 6.895f)
lineToRelative(0.002f, -0.852f)
close()
moveTo(17.887f, 13.417f)
lineToRelative(-5.922f, -3.411f)
lineToRelative(-5.853f, 3.401f)
lineToRelative(5.917f, 3.414f)
lineToRelative(5.858f, -3.404f)
close()
moveTo(23.959f, 12.179f)
lineToRelative(-11.862f, 6.864f)
lineToRelative(-0.01f, 4.013f)
lineToRelative(11.863f, -6.894f)
lineToRelative(0.009f, -3.983f)
close()
moveTo(11.944f, 21.27f)
lineToRelative(0.005f, -2.227f)
lineTo(0.01f, 12.148f)
lineTo(0.0f, 16.162f)
lineToRelative(11.94f, 6.895f)
lineToRelative(0.004f, -1.787f)
close()
moveTo(0.021f, 9.802f)
lineTo(1.6f, 8.885f)
lineTo(0.025f, 7.976f)
lineTo(0.021f, 9.802f)
close()
moveTo(5.853f, 6.412f)
lineToRelative(0.024f, -1.636f)
lineToRelative(0.001f, -0.296f)
lineTo(0.099f, 7.848f)
lineToRelative(1.647f, 0.951f)
lineToRelative(4.107f, -2.387f)
close()
moveTo(5.894f, 11.363f)
lineTo(1.749f, 8.97f)
lineToRelative(-0.46f, 0.267f)
lineToRelative(-1.195f, 0.695f)
lineToRelative(5.795f, 3.345f)
lineToRelative(0.005f, -1.914f)
close()
}
}
.build()
return _linuxcontainers!!
}
private var _linuxcontainers: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy