![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.compose.icons.simpleicons.AlibabaDotCom.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.AlibabaDotCom: ImageVector
get() {
if (_alibabaDotCom != null) {
return _alibabaDotCom!!
}
_alibabaDotCom = Builder(name = "AlibabaDotCom", 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(14.391f, 16.22f)
curveToRelative(-0.963f, 0.044f, -0.865f, -0.459f, -0.302f, -1.234f)
curveToRelative(1.32f, -1.768f, 3.82f, -4.236f, 3.906f, -5.982f)
curveToRelative(0.151f, -2.283f, -2.143f, -3.026f, -4.501f, -3.004f)
curveToRelative(-1.645f, 0.022f, -3.344f, 0.492f, -4.501f, 0.906f)
curveTo(5.0f, 8.315f, 2.489f, 10.576f, 0.909f, 13.076f)
curveTo(-0.768f, 15.554f, -0.216f, 17.923f, 3.322f, 18.0f)
curveToRelative(2.716f, -0.109f, 4.48f, -0.862f, 6.32f, -1.802f)
curveToRelative(0.01f, 0.0f, -5.086f, 1.453f, -6.958f, 0.383f)
lineToRelative(-0.008f, -0.002f)
curveToRelative(-0.193f, -0.11f, -0.404f, -0.264f, -0.457f, -0.683f)
curveToRelative(-0.012f, -0.885f, 1.46f, -1.802f, 2.283f, -2.097f)
verticalLineToRelative(-1.533f)
arcToRelative(5.374f, 5.374f, 0.0f, false, false, 1.955f, 0.366f)
arcToRelative(5.378f, 5.378f, 0.0f, false, false, 3.472f, -1.265f)
curveToRelative(0.037f, 0.13f, 0.056f, 0.278f, 0.044f, 0.447f)
horizontalLineToRelative(0.371f)
curveToRelative(0.048f, -0.394f, -0.172f, -0.706f, -0.172f, -0.706f)
curveToRelative(-0.333f, -0.529f, -0.915f, -0.52f, -0.915f, -0.52f)
reflectiveCurveToRelative(0.315f, 0.137f, 0.529f, 0.466f)
arcToRelative(4.953f, 4.953f, 0.0f, false, true, -4.665f, 0.932f)
lineToRelative(1.21f, -1.2f)
lineToRelative(-0.336f, -0.874f)
curveToRelative(2.435f, -0.852f, 4.48f, -1.507f, 7.812f, -2.085f)
lineToRelative(-0.746f, -0.624f)
lineToRelative(0.389f, -0.24f)
curveToRelative(2.01f, 0.568f, 3.325f, 0.985f, 3.253f, 2.051f)
arcToRelative(2.672f, 2.672f, 0.0f, false, true, -0.202f, 0.611f)
curveToRelative(-0.584f, 1.158f, -2.326f, 3.09f, -3.029f, 3.898f)
curveToRelative(-0.465f, 0.535f, -0.92f, 1.06f, -1.245f, 1.562f)
curveToRelative(-0.335f, 0.503f, -0.54f, 0.971f, -0.551f, 1.42f)
curveToRelative(0.043f, 3.504f, 10.334f, -1.64f, 12.324f, -3.003f)
curveToRelative(-2.943f, 1.266f, -6.113f, 2.489f, -9.609f, 2.718f)
close()
}
}
.build()
return _alibabaDotCom!!
}
private var _alibabaDotCom: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy