commonMain.compose.icons.simpleicons.Nbb.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.Nbb: ImageVector
get() {
if (_nbb != null) {
return _nbb!!
}
_nbb = Builder(name = "Nbb", 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(2.714f, 11.176f)
horizontalLineToRelative(0.02f)
lineToRelative(0.167f, 4.327f)
horizontalLineToRelative(2.105f)
lineTo(6.5f, 8.482f)
lineTo(4.652f, 8.482f)
lineToRelative(-0.915f, 4.288f)
horizontalLineToRelative(-0.02f)
lineTo(3.63f, 8.482f)
lineTo(1.495f, 8.482f)
lineTo(0.0f, 15.503f)
horizontalLineToRelative(1.79f)
close()
moveTo(9.968f, 11.825f)
lineToRelative(0.01f, -0.02f)
curveToRelative(0.462f, -0.098f, 1.219f, -0.481f, 1.453f, -1.583f)
curveToRelative(0.248f, -1.16f, -0.362f, -1.74f, -1.59f, -1.74f)
lineTo(7.007f, 8.482f)
lineToRelative(-1.494f, 7.02f)
horizontalLineToRelative(2.94f)
curveToRelative(1.209f, 0.0f, 2.153f, -0.619f, 2.458f, -2.025f)
curveToRelative(0.295f, -1.416f, -0.549f, -1.613f, -0.944f, -1.652f)
close()
moveTo(8.916f, 13.329f)
curveToRelative(-0.099f, 0.462f, -0.354f, 0.757f, -0.787f, 0.757f)
horizontalLineToRelative(-0.345f)
lineToRelative(0.334f, -1.602f)
horizontalLineToRelative(0.354f)
curveToRelative(0.454f, 0.0f, 0.542f, 0.373f, 0.444f, 0.845f)
close()
moveTo(9.388f, 10.576f)
curveToRelative(-0.108f, 0.511f, -0.452f, 0.669f, -0.708f, 0.669f)
horizontalLineToRelative(-0.295f)
lineToRelative(0.285f, -1.347f)
horizontalLineToRelative(0.266f)
curveToRelative(0.403f, 0.0f, 0.55f, 0.225f, 0.452f, 0.678f)
close()
moveTo(16.218f, 13.477f)
curveToRelative(0.295f, -1.416f, -0.55f, -1.613f, -0.944f, -1.652f)
lineToRelative(0.01f, -0.02f)
curveToRelative(0.462f, -0.098f, 1.219f, -0.481f, 1.453f, -1.583f)
curveToRelative(0.248f, -1.16f, -0.362f, -1.74f, -1.591f, -1.74f)
horizontalLineToRelative(-2.831f)
lineToRelative(-1.495f, 7.02f)
horizontalLineToRelative(2.94f)
curveToRelative(1.21f, 0.0f, 2.153f, -0.619f, 2.458f, -2.025f)
close()
moveTo(14.222f, 13.329f)
curveToRelative(-0.098f, 0.462f, -0.354f, 0.757f, -0.787f, 0.757f)
horizontalLineToRelative(-0.344f)
lineToRelative(0.335f, -1.602f)
horizontalLineToRelative(0.354f)
curveToRelative(0.452f, 0.0f, 0.54f, 0.373f, 0.442f, 0.845f)
close()
moveTo(14.694f, 10.576f)
curveToRelative(-0.108f, 0.511f, -0.453f, 0.669f, -0.708f, 0.669f)
horizontalLineToRelative(-0.294f)
lineToRelative(0.285f, -1.347f)
horizontalLineToRelative(0.266f)
curveToRelative(0.402f, 0.0f, 0.55f, 0.225f, 0.45f, 0.678f)
close()
moveTo(19.664f, 8.482f)
horizontalLineToRelative(-2.951f)
curveToRelative(0.75f, 0.615f, 0.51f, 1.669f, 0.51f, 1.669f)
lineTo(19.2f, 10.151f)
lineToRelative(2.338f, 1.857f)
lineToRelative(-2.167f, 1.834f)
horizontalLineToRelative(-2.72f)
curveToRelative(-0.117f, 0.568f, -0.712f, 1.424f, -1.125f, 1.676f)
horizontalLineToRelative(4.148f)
lineTo(24.0f, 12.01f)
close()
}
}
.build()
return _nbb!!
}
private var _nbb: ImageVector? = null