commonMain.compose.icons.tablericons.filled.Bong.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tabler-icons Show documentation
Show all versions of tabler-icons Show documentation
Fork of BenjaminHalko's implementation of DevSrSouza's Compose Icons
package compose.icons.tablericons.filled
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.tablericons.FilledGroup
public val FilledGroup.Bong: ImageVector
get() {
if (_bong != null) {
return _bong!!
}
_bong = Builder(name = "Bong", 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.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f)
verticalLineToRelative(5.587f)
lineToRelative(2.293f, -2.294f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.083f)
lineToRelative(0.094f, 0.083f)
lineToRelative(2.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 1.414f)
lineToRelative(-3.116f, 3.115f)
lineToRelative(0.086f, 0.233f)
curveToRelative(0.311f, 0.907f, 0.396f, 1.865f, 0.263f, 2.794f)
lineToRelative(-0.062f, 0.36f)
lineToRelative(-0.012f, 0.052f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, -1.121f, 2.41f)
lineToRelative(-0.16f, 0.199f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, -10.396f, -2.378f)
lineToRelative(-0.068f, -0.288f)
lineToRelative(-0.009f, -0.046f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, 2.833f, -6.324f)
lineToRelative(0.055f, -0.031f)
verticalLineToRelative(-6.803f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, -2.0f)
close()
moveTo(12.0f, 4.0f)
horizontalLineToRelative(-2.0f)
verticalLineToRelative(7.416f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.483f, 0.856f)
lineToRelative(-0.117f, 0.06f)
arcToRelative(4.0f, 4.0f, 0.0f, false, false, -2.4f, 3.668f)
horizontalLineToRelative(8.0f)
arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.486f, -1.914f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.17f, -1.185f)
lineToRelative(2.902f, -2.901f)
lineToRelative(-0.586f, -0.586f)
lineToRelative(-2.9f, 2.902f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.067f, 0.226f)
lineToRelative(-0.12f, -0.056f)
arcToRelative(4.0f, 4.0f, 0.0f, false, false, -0.316f, -0.155f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.597f, -0.915f)
close()
}
}
.build()
return _bong!!
}
private var _bong: ImageVector? = null