commonMain.compose.icons.simpleicons.Codingninjas.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.Codingninjas: ImageVector
get() {
if (_codingninjas != null) {
return _codingninjas!!
}
_codingninjas = Builder(name = "Codingninjas", 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(23.198f, 0.0f)
curveToRelative(-0.499f, 0.264f, -1.209f, 0.675f, -1.79f, 0.984f)
arcToRelative(542.82f, 542.82f, 0.0f, false, false, 0.0f, 6.242f)
curveToRelative(0.995f, -0.526f, 1.761f, -0.834f, 1.79f, -2.066f)
lineTo(23.198f, 0.0f)
close()
moveTo(8.743f, 0.181f)
curveTo(7.298f, 0.144f, 5.613f, 0.65f, 4.47f, 1.414f)
curveToRelative(-1.17f, 0.8f, -1.987f, 1.869f, -2.572f, 3.179f)
arcTo(16.787f, 16.787f, 0.0f, false, false, 0.9f, 8.87f)
curveToRelative(-0.15f, 1.483f, -0.128f, 3.079f, 0.025f, 4.677f)
curveToRelative(0.27f, 1.855f, 0.601f, 3.724f, 1.616f, 5.456f)
curveToRelative(1.57f, 2.62f, 4.313f, 4.109f, 7.262f, 4.19f)
curveToRelative(3.41f, 0.246f, 7.233f, 0.53f, 11.411f, 0.807f)
curveToRelative(0.022f, -2.005f, 0.01f, -5.418f, 0.0f, -6.25f)
curveToRelative(-3.206f, -0.21f, -7.398f, -0.524f, -11.047f, -0.782f)
curveToRelative(-0.443f, -0.043f, -0.896f, -0.056f, -1.324f, -0.172f)
curveToRelative(-1.086f, -0.295f, -1.806f, -0.802f, -2.374f, -1.757f)
curveToRelative(-0.643f, -1.107f, -0.875f, -2.832f, -0.797f, -4.294f)
curveToRelative(0.11f, -1.27f, 0.287f, -2.41f, 1.244f, -3.44f)
curveToRelative(0.669f, -0.56f, 1.307f, -0.758f, 2.161f, -0.84f)
curveToRelative(5.17f, 0.345f, 7.609f, 0.53f, 12.137f, 0.858f)
curveToRelative(0.032f, -1.133f, 0.01f, -3.46f, 0.0f, -6.229f)
curveTo(16.561f, 0.752f, 12.776f, 0.474f, 8.743f, 0.181f)
close()
moveTo(8.462f, 9.881f)
curveToRelative(0.174f, 0.675f, 0.338f, 1.305f, 0.729f, 1.903f)
curveToRelative(0.537f, 0.832f, 1.375f, 1.127f, 2.388f, 0.877f)
curveToRelative(0.76f, -0.196f, 1.581f, -0.645f, 2.35f, -1.282f)
close()
moveTo(21.436f, 10.921f)
lineToRelative(-5.447f, 0.689f)
curveToRelative(0.799f, 0.739f, 1.552f, 1.368f, 2.548f, 1.703f)
curveToRelative(0.988f, 0.319f, 1.78f, 0.01f, 2.308f, -0.777f)
curveToRelative(0.209f, -0.329f, 0.56f, -1.148f, 0.591f, -1.614f)
close()
moveTo(22.278f, 17.382f)
curveToRelative(-0.388f, 0.01f, -0.665f, 0.198f, -0.87f, 0.355f)
curveToRelative(0.002f, 1.798f, 0.0f, 4.127f, 0.0f, 6.223f)
curveToRelative(0.586f, -0.297f, 1.135f, -0.644f, 1.793f, -0.998f)
curveToRelative(-0.005f, -1.454f, 0.002f, -3.137f, -0.005f, -4.707f)
arcToRelative(0.904f, 0.904f, 0.0f, false, false, -0.917f, -0.873f)
close()
}
}
.build()
return _codingninjas!!
}
private var _codingninjas: ImageVector? = null