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

commonMain.compose.icons.tablericons.filled.BrandDribbble.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.BrandDribbble: ImageVector
    get() {
        if (_brandDribbble != null) {
            return _brandDribbble!!
        }
        _brandDribbble = Builder(name = "BrandDribbble", 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.384f, 14.38f)
                arcToRelative(22.877f, 22.877f, 0.0f, false, true, 1.056f, 4.863f)
                lineToRelative(0.064f, 0.644f)
                lineToRelative(0.126f, 1.431f)
                arcToRelative(10.0f, 10.0f, 0.0f, false, true, -9.15f, -0.98f)
                lineToRelative(2.08f, -2.087f)
                lineToRelative(0.246f, -0.24f)
                curveToRelative(1.793f, -1.728f, 3.41f, -2.875f, 5.387f, -3.566f)
                lineToRelative(0.191f, -0.065f)
                close()
                moveTo(20.474f, 13.597f)
                lineToRelative(0.414f, 0.003f)
                lineToRelative(0.981f, 0.014f)
                arcToRelative(9.997f, 9.997f, 0.0f, false, true, -4.319f, 6.704f)
                lineToRelative(-0.054f, -0.605f)
                curveToRelative(-0.18f, -2.057f, -0.55f, -3.958f, -1.163f, -5.814f)
                curveToRelative(1.044f, -0.182f, 2.203f, -0.278f, 3.529f, -0.298f)
                lineToRelative(0.611f, -0.004f)
                close()
                moveTo(12.605f, 10.416f)
                arcToRelative(24.91f, 24.91f, 0.0f, false, true, 1.052f, 2.098f)
                curveToRelative(-2.276f, 0.77f, -4.142f, 2.053f, -6.144f, 3.967f)
                lineToRelative(-0.355f, 0.344f)
                lineToRelative(-2.236f, 2.24f)
                arcToRelative(10.0f, 10.0f, 0.0f, false, true, -2.917f, -6.741f)
                lineToRelative(-0.005f, -0.324f)
                lineToRelative(0.004f, -0.25f)
                horizontalLineToRelative(1.096f)
                lineToRelative(0.467f, -0.002f)
                curveToRelative(3.547f, -0.026f, 6.356f, -0.367f, 8.938f, -1.295f)
                lineToRelative(0.1f, -0.037f)
                close()
                moveTo(21.993f, 11.618f)
                lineToRelative(-1.515f, -0.02f)
                curveToRelative(-1.86f, -0.003f, -3.45f, 0.124f, -4.865f, 0.402f)
                arcToRelative(26.112f, 26.112f, 0.0f, false, false, -1.163f, -2.38f)
                curveToRelative(1.393f, -0.695f, 2.757f, -1.597f, 4.179f, -2.75f)
                lineToRelative(0.428f, -0.354f)
                lineToRelative(0.816f, -0.682f)
                arcToRelative(10.0f, 10.0f, 0.0f, false, true, 2.098f, 5.409f)
                lineToRelative(0.022f, 0.375f)
                close()
                moveTo(7.33f, 3.158f)
                lineToRelative(1.266f, 1.522f)
                curveToRelative(1.145f, 1.398f, 2.121f, 2.713f, 2.949f, 3.985f)
                curveToRelative(-2.26f, 0.766f, -4.739f, 1.052f, -7.883f, 1.081f)
                lineToRelative(-0.562f, 0.004f)
                horizontalLineToRelative(-0.844f)
                arcToRelative(10.0f, 10.0f, 0.0f, false, true, 5.074f, -6.593f)
                close()
                moveTo(17.0f, 3.34f)
                curveToRelative(0.53f, 0.306f, 1.026f, 0.657f, 1.483f, 1.046f)
                lineToRelative(-1.025f, 0.857f)
                curveToRelative(-1.379f, 1.128f, -2.688f, 1.993f, -4.034f, 2.649f)
                curveToRelative(-0.89f, -1.398f, -1.943f, -2.836f, -3.182f, -4.358f)
                lineToRelative(-0.474f, -0.574f)
                lineToRelative(-0.485f, -0.584f)
                arcToRelative(10.0f, 10.0f, 0.0f, false, true, 7.717f, 0.964f)
                close()
            }
        }
        .build()
        return _brandDribbble!!
    }

private var _brandDribbble: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy