commonMain.compose.icons.tablericons.filled.BellRinging.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.BellRinging: ImageVector
get() {
if (_bellRinging != null) {
return _bellRinging!!
}
_bellRinging = Builder(name = "BellRinging", 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(17.451f, 2.344f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.41f, -0.099f)
arcToRelative(12.05f, 12.05f, 0.0f, false, true, 3.048f, 4.064f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.818f, 0.836f)
arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.54f, -3.39f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.1f, -1.41f)
close()
}
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(5.136f, 2.245f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.312f, 1.51f)
arcToRelative(10.05f, 10.05f, 0.0f, false, false, -2.54f, 3.39f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.817f, -0.835f)
arcToRelative(12.05f, 12.05f, 0.0f, false, true, 3.045f, -4.065f)
close()
}
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()
}
}
.build()
return _bellRinging!!
}
private var _bellRinging: ImageVector? = null