![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.compose.icons.simpleicons.LibrariesDotIo.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.LibrariesDotIo: ImageVector
get() {
if (_librariesDotIo != null) {
return _librariesDotIo!!
}
_librariesDotIo = Builder(name = "LibrariesDotIo", 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.152f, 23.998f)
curveToRelative(-1.164f, -0.054f, -1.75f, 0.044f, -2.021f, -0.48f)
curveToRelative(-0.265f, -0.306f, -0.138f, -3.465f, -0.185f, -4.694f)
curveToRelative(1.702f, -1.365f, 3.42f, -2.688f, 5.145f, -4.025f)
curveToRelative(0.0f, 2.892f, 0.147f, 8.186f, -0.17f, 8.72f)
curveToRelative(-0.27f, 0.56f, -1.33f, 0.474f, -2.77f, 0.479f)
close()
moveTo(9.62f, 23.378f)
curveToRelative(-0.304f, -0.006f, -0.171f, -6.048f, -0.204f, -11.204f)
curveToRelative(1.704f, -1.357f, 3.42f, -2.678f, 5.143f, -4.01f)
curveToRelative(-0.028f, 5.924f, 0.123f, 14.775f, -0.108f, 15.098f)
curveToRelative(-0.334f, 0.71f, -1.064f, 0.543f, -2.467f, 0.585f)
curveToRelative(-1.094f, -0.06f, -2.058f, 0.16f, -2.364f, -0.469f)
close()
moveTo(18.03f, 23.396f)
curveToRelative(-0.174f, -0.33f, -0.158f, -7.898f, -0.104f, -15.204f)
arcToRelative(500.566f, 500.566f, 0.0f, false, true, 5.12f, 3.977f)
curveToRelative(-0.027f, 1.216f, 0.103f, 11.184f, -0.165f, 11.18f)
curveToRelative(-0.28f, 0.47f, -0.641f, 0.488f, -2.44f, 0.488f)
curveToRelative(-0.933f, -0.085f, -1.852f, 0.18f, -2.411f, -0.441f)
close()
moveTo(0.979f, 15.564f)
curveTo(0.957f, 10.754f, 0.927f, 6.047f, 0.999f, 1.1f)
curveToRelative(0.028f, -0.633f, 0.251f, -1.003f, 0.94f, -1.041f)
curveToRelative(0.538f, -0.07f, 3.012f, -0.04f, 3.463f, 0.05f)
arcToRelative(0.867f, 0.867f, 0.0f, false, true, 0.624f, 0.65f)
curveToRelative(0.097f, 2.718f, 0.075f, 6.154f, 0.097f, 10.776f)
curveToRelative(-1.717f, 1.341f, -3.431f, 2.678f, -5.144f, 4.024f)
close()
moveTo(9.437f, 8.908f)
curveToRelative(-0.048f, -2.518f, 0.0f, -7.016f, 0.03f, -7.696f)
curveToRelative(0.077f, -1.552f, 1.087f, -1.115f, 2.41f, -1.2f)
curveToRelative(1.977f, -0.018f, 2.279f, 0.097f, 2.5f, 0.455f)
curveToRelative(0.246f, 0.368f, 0.204f, 2.598f, 0.204f, 4.422f)
curveToRelative(-1.693f, 1.323f, -3.594f, 2.83f, -5.144f, 4.017f)
close()
moveTo(23.02f, 8.895f)
curveToRelative(-1.706f, -1.338f, -3.353f, -2.633f, -5.064f, -3.964f)
curveToRelative(0.015f, -1.322f, -0.064f, -2.744f, 0.01f, -3.995f)
curveToRelative(0.107f, -0.54f, 0.257f, -0.836f, 1.16f, -0.866f)
curveToRelative(1.118f, -0.122f, 2.726f, -0.09f, 3.419f, 0.142f)
curveToRelative(0.524f, 0.124f, 0.52f, 1.379f, 0.485f, 5.226f)
close()
}
}
.build()
return _librariesDotIo!!
}
private var _librariesDotIo: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy