All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.compose.icons.tablericons.filled.Boom.kt Maven / Gradle / Ivy

There is a newer version: 3.22.0
Show newest version
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.Boom: ImageVector
    get() {
        if (_boom != null) {
            return _boom!!
        }
        _boom = Builder(name = "Boom", 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(7.514f, 3.836f)
                curveToRelative(0.151f, -0.909f, 1.346f, -1.147f, 1.834f, -0.366f)
                curveToRelative(2.294f, 3.67f, 4.275f, 4.048f, 5.758f, 1.083f)
                curveToRelative(0.471f, -0.944f, 1.894f, -0.608f, 1.894f, 0.447f)
                curveToRelative(0.0f, 2.448f, 1.552f, 4.0f, 4.0f, 4.0f)
                curveToRelative(0.89f, 0.0f, 1.337f, 1.077f, 0.707f, 1.707f)
                curveToRelative(-1.61f, 1.61f, -1.61f, 2.975f, 0.0f, 4.581f)
                curveToRelative(0.63f, 0.63f, 0.185f, 1.707f, -0.706f, 1.708f)
                curveToRelative(-2.448f, 0.003f, -3.001f, 0.556f, -3.001f, 3.004f)
                curveToRelative(0.0f, 0.961f, -1.223f, 1.369f, -1.8f, 0.6f)
                curveToRelative(-2.325f, -3.1f, -5.494f, -2.856f, -7.368f, -0.045f)
                curveToRelative(-0.503f, 0.754f, -1.67f, 0.504f, -1.818f, -0.39f)
                curveToRelative(-0.365f, -2.188f, -1.04f, -2.656f, -4.178f, -3.179f)
                arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.543f, -1.693f)
                curveToRelative(1.618f, -1.618f, 1.618f, -3.027f, -0.053f, -4.981f)
                lineToRelative(-0.009f, -0.013f)
                lineToRelative(-0.013f, -0.014f)
                lineToRelative(-0.044f, -0.062f)
                lineToRelative(-0.01f, -0.011f)
                lineToRelative(-0.006f, -0.013f)
                lineToRelative(-0.038f, -0.066f)
                lineToRelative(-0.017f, -0.028f)
                lineToRelative(-0.001f, -0.004f)
                lineToRelative(-0.027f, -0.066f)
                lineToRelative(-0.019f, -0.041f)
                arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.051f, -0.233f)
                lineToRelative(-0.002f, -0.045f)
                lineToRelative(-0.003f, -0.068f)
                arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.06f, -0.328f)
                lineToRelative(0.009f, -0.023f)
                lineToRelative(0.023f, -0.049f)
                lineToRelative(0.011f, -0.029f)
                lineToRelative(0.009f, -0.015f)
                lineToRelative(0.007f, -0.016f)
                lineToRelative(0.019f, -0.029f)
                lineToRelative(0.02f, -0.035f)
                lineToRelative(0.012f, -0.017f)
                lineToRelative(0.013f, -0.022f)
                lineToRelative(0.027f, -0.034f)
                lineToRelative(0.011f, -0.016f)
                lineToRelative(0.018f, -0.02f)
                lineToRelative(0.02f, -0.025f)
                lineToRelative(0.021f, -0.02f)
                lineToRelative(0.015f, -0.017f)
                lineToRelative(0.035f, -0.032f)
                lineToRelative(0.02f, -0.019f)
                lineToRelative(0.009f, -0.007f)
                lineToRelative(0.018f, -0.015f)
                lineToRelative(0.055f, -0.039f)
                lineToRelative(0.018f, -0.015f)
                lineToRelative(0.008f, -0.004f)
                lineToRelative(0.01f, -0.007f)
                lineToRelative(0.061f, -0.034f)
                lineToRelative(0.028f, -0.016f)
                lineToRelative(0.004f, -0.002f)
                lineToRelative(0.063f, -0.026f)
                lineToRelative(0.044f, -0.019f)
                arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.115f, -0.032f)
                lineToRelative(0.004f, -0.002f)
                lineToRelative(0.267f, -0.063f)
                curveToRelative(2.39f, -0.613f, 3.934f, -2.19f, 4.411f, -4.523f)
                close()
            }
        }
        .build()
        return _boom!!
    }

private var _boom: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy