![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.compose.icons.simpleicons.Empirekred.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.Empirekred: ImageVector
get() {
if (_empirekred != null) {
return _empirekred!!
}
_empirekred = Builder(name = "Empirekred", 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(24.0f, 4.678f)
curveToRelative(0.0f, -2.08f, -1.674f, -3.774f, -3.727f, -3.774f)
lineTo(3.725f, 0.904f)
curveTo(1.67f, 0.904f, 0.0f, 2.597f, 0.0f, 4.684f)
verticalLineToRelative(7.535f)
curveToRelative(0.0f, 0.336f, 0.045f, 0.667f, 0.135f, 0.997f)
curveToRelative(0.03f, 0.134f, 0.07f, 0.264f, 0.12f, 0.39f)
curveToRelative(0.25f, 0.623f, 0.653f, 1.17f, 1.173f, 1.593f)
curveToRelative(0.51f, 0.524f, 1.17f, 1.095f, 1.965f, 1.71f)
lineToRelative(0.105f, 0.074f)
lineToRelative(0.435f, 0.33f)
lineToRelative(0.52f, 0.397f)
curveToRelative(1.19f, 0.912f, 3.205f, 2.453f, 6.165f, 4.71f)
curveToRelative(0.483f, 0.366f, 1.038f, 0.676f, 1.383f, 0.676f)
curveToRelative(0.342f, 0.0f, 0.901f, -0.31f, 1.382f, -0.676f)
curveToRelative(2.96f, -2.257f, 4.972f, -3.798f, 6.164f, -4.71f)
lineToRelative(0.972f, -0.74f)
horizontalLineToRelative(-0.002f)
lineToRelative(0.11f, -0.085f)
curveToRelative(0.798f, -0.612f, 1.463f, -1.19f, 1.968f, -1.71f)
curveToRelative(0.514f, -0.418f, 0.908f, -0.96f, 1.15f, -1.576f)
curveToRelative(0.166f, -0.44f, 0.252f, -0.906f, 0.254f, -1.376f)
verticalLineToRelative(-7.15f)
horizontalLineToRelative(-0.003f)
lineToRelative(0.003f, -0.003f)
verticalLineToRelative(-0.39f)
close()
moveTo(19.86f, 10.92f)
arcToRelative(6.42f, 6.42f, 0.0f, false, false, -0.283f, -0.045f)
curveToRelative(-0.105f, 0.0f, -0.226f, -0.015f, -0.33f, -0.015f)
arcToRelative(1.883f, 1.883f, 0.0f, false, false, -0.81f, 0.164f)
curveToRelative(-0.214f, 0.1f, -0.4f, 0.248f, -0.54f, 0.436f)
curveToRelative(-0.135f, 0.196f, -0.23f, 0.415f, -0.286f, 0.646f)
curveToRelative(-0.06f, 0.254f, -0.09f, 0.524f, -0.09f, 0.81f)
verticalLineToRelative(2.88f)
horizontalLineToRelative(-5.027f)
lineToRelative(-3.733f, -5.583f)
lineToRelative(-1.556f, 1.575f)
verticalLineToRelative(3.975f)
horizontalLineToRelative(-2.72f)
lineTo(4.485f, 3.393f)
lineTo(7.2f, 3.393f)
verticalLineToRelative(5.13f)
lineToRelative(4.83f, -5.127f)
horizontalLineToRelative(3.395f)
lineToRelative(-4.83f, 4.885f)
lineToRelative(5.166f, 7.293f)
lineTo(15.761f, 9.395f)
horizontalLineToRelative(1.662f)
verticalLineToRelative(1.182f)
horizontalLineToRelative(0.023f)
curveToRelative(0.084f, -0.195f, 0.195f, -0.38f, 0.33f, -0.547f)
curveToRelative(0.144f, -0.168f, 0.3f, -0.312f, 0.483f, -0.43f)
curveToRelative(0.18f, -0.106f, 0.375f, -0.21f, 0.58f, -0.27f)
curveToRelative(0.205f, -0.06f, 0.42f, -0.09f, 0.64f, -0.09f)
curveToRelative(0.114f, 0.0f, 0.24f, 0.03f, 0.38f, 0.06f)
close()
}
}
.build()
return _empirekred!!
}
private var _empirekred: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy