![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.compose.icons.simpleicons.NuxtDotJs.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.NuxtDotJs: ImageVector
get() {
if (_nuxtDotJs != null) {
return _nuxtDotJs!!
}
_nuxtDotJs = Builder(name = "NuxtDotJs", 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(19.724f, 20.273f)
lineToRelative(0.023f, -0.045f)
arcToRelative(0.74f, 0.74f, 0.0f, false, false, 0.053f, -0.117f)
lineToRelative(0.002f, -0.005f)
arcToRelative(1.16f, 1.16f, 0.0f, false, false, 0.054f, -0.607f)
lineToRelative(0.001f, 0.007f)
arcToRelative(1.795f, 1.795f, 0.0f, false, false, -0.235f, -0.623f)
lineToRelative(0.005f, 0.008f)
lineToRelative(-5.318f, -9.354f)
lineToRelative(-0.812f, -1.42f)
lineToRelative(-0.807f, 1.42f)
lineToRelative(-5.315f, 9.354f)
arcToRelative(1.85f, 1.85f, 0.0f, false, false, -0.204f, 0.604f)
lineToRelative(-0.001f, 0.011f)
arcToRelative(1.257f, 1.257f, 0.0f, false, false, 0.08f, 0.713f)
lineToRelative(-0.003f, -0.008f)
arcToRelative(0.809f, 0.809f, 0.0f, false, false, 0.05f, 0.102f)
lineToRelative(-0.002f, -0.004f)
curveToRelative(0.16f, 0.275f, 0.5f, 0.602f, 1.25f, 0.602f)
horizontalLineToRelative(9.899f)
curveToRelative(0.157f, 0.0f, 0.925f, -0.032f, 1.28f, -0.637f)
close()
moveTo(13.496f, 10.956f)
lineToRelative(4.859f, 8.549f)
lineTo(8.638f, 19.505f)
close()
moveTo(23.746f, 18.891f)
lineTo(16.729f, 6.529f)
curveToRelative(-0.072f, -0.13f, -0.477f, -0.787f, -1.182f, -0.787f)
curveToRelative(-0.317f, 0.0f, -0.772f, 0.135f, -1.142f, 0.785f)
lineToRelative(-0.907f, 1.59f)
lineToRelative(0.807f, 1.42f)
lineToRelative(1.25f, -2.212f)
lineToRelative(6.942f, 12.182f)
horizontalLineToRelative(-2.64f)
arcToRelative(1.187f, 1.187f, 0.0f, false, true, -0.058f, 0.608f)
lineToRelative(0.003f, -0.008f)
arcToRelative(0.772f, 0.772f, 0.0f, false, true, -0.057f, 0.126f)
lineToRelative(0.002f, -0.004f)
lineToRelative(-0.023f, 0.045f)
curveToRelative(-0.355f, 0.605f, -1.122f, 0.637f, -1.272f, 0.637f)
horizontalLineToRelative(4.129f)
curveToRelative(0.152f, 0.0f, 0.917f, -0.032f, 1.272f, -0.637f)
curveToRelative(0.157f, -0.275f, 0.27f, -0.737f, -0.107f, -1.382f)
close()
moveTo(7.302f, 20.308f)
arcToRelative(0.989f, 0.989f, 0.0f, false, true, -0.045f, -0.092f)
lineToRelative(-0.002f, -0.006f)
arcToRelative(1.228f, 1.228f, 0.0f, false, true, -0.084f, -0.712f)
lineToRelative(-0.001f, 0.007f)
lineTo(1.498f, 19.505f)
lineToRelative(8.43f, -14.834f)
lineToRelative(2.767f, 4.865f)
lineToRelative(0.802f, -1.42f)
lineToRelative(-2.412f, -4.249f)
curveToRelative(-0.067f, -0.122f, -0.475f, -0.777f, -1.177f, -0.777f)
curveToRelative(-0.317f, 0.0f, -0.772f, 0.137f, -1.142f, 0.787f)
lineTo(0.227f, 18.89f)
curveToRelative(-0.072f, 0.13f, -0.425f, 0.812f, -0.075f, 1.417f)
curveToRelative(0.16f, 0.275f, 0.5f, 0.602f, 1.25f, 0.602f)
horizontalLineToRelative(7.152f)
curveToRelative(-0.745f, 0.0f, -1.09f, -0.322f, -1.25f, -0.602f)
close()
}
}
.build()
return _nuxtDotJs!!
}
private var _nuxtDotJs: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy