commonMain.compose.icons.tablericons.filled.BellZ.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
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt
import androidx.compose.ui.graphics.StrokeJoin
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.BellZ: ImageVector
get() {
if (_bellZ != null) {
return _bellZ!!
}
_bellZ = Builder(name = "BellZ", 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.235f, 19.0f)
curveToRelative(0.865f, 0.0f, 1.322f, 1.024f, 0.745f, 1.668f)
arcToRelative(3.992f, 3.992f, 0.0f, false, true, -2.98f, 1.332f)
arcToRelative(3.992f, 3.992f, 0.0f, false, true, -2.98f, -1.332f)
curveToRelative(-0.552f, -0.616f, -0.158f, -1.579f, 0.634f, -1.661f)
lineToRelative(0.11f, -0.006f)
horizontalLineToRelative(4.471f)
close()
}
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(12.0f, 2.0f)
curveToRelative(1.358f, 0.0f, 2.506f, 0.903f, 2.875f, 2.141f)
lineToRelative(0.046f, 0.171f)
lineToRelative(0.008f, 0.043f)
arcToRelative(8.013f, 8.013f, 0.0f, false, true, 4.024f, 6.069f)
lineToRelative(0.028f, 0.287f)
lineToRelative(0.019f, 0.289f)
verticalLineToRelative(2.931f)
lineToRelative(0.021f, 0.136f)
arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.143f, 1.847f)
lineToRelative(0.167f, 0.117f)
lineToRelative(0.162f, 0.099f)
curveToRelative(0.86f, 0.487f, 0.56f, 1.766f, -0.377f, 1.864f)
lineToRelative(-0.116f, 0.006f)
horizontalLineToRelative(-16.0f)
curveToRelative(-1.028f, 0.0f, -1.387f, -1.364f, -0.493f, -1.87f)
arcToRelative(3.0f, 3.0f, 0.0f, false, false, 1.472f, -2.063f)
lineToRelative(0.021f, -0.143f)
lineToRelative(0.001f, -2.97f)
arcToRelative(8.0f, 8.0f, 0.0f, false, true, 3.821f, -6.454f)
lineToRelative(0.248f, -0.146f)
lineToRelative(0.01f, -0.043f)
arcToRelative(3.003f, 3.003f, 0.0f, false, true, 2.562f, -2.29f)
lineToRelative(0.182f, -0.017f)
lineToRelative(0.176f, -0.004f)
close()
moveTo(14.0f, 8.0f)
horizontalLineToRelative(-4.0f)
lineToRelative(-0.117f, 0.007f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.883f, 0.993f)
lineToRelative(0.007f, 0.117f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.993f, 0.883f)
horizontalLineToRelative(1.584f)
lineToRelative(-2.291f, 2.293f)
lineToRelative(-0.076f, 0.084f)
curveToRelative(-0.514f, 0.637f, -0.07f, 1.623f, 0.783f, 1.623f)
horizontalLineToRelative(4.0f)
lineToRelative(0.117f, -0.007f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.883f, -0.993f)
lineToRelative(-0.007f, -0.117f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.993f, -0.883f)
horizontalLineToRelative(-1.586f)
lineToRelative(2.293f, -2.293f)
lineToRelative(0.076f, -0.084f)
curveToRelative(0.514f, -0.637f, 0.07f, -1.623f, -0.783f, -1.623f)
close()
}
}
.build()
return _bellZ!!
}
private var _bellZ: ImageVector? = null