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

commonMain.compose.icons.simpleicons._3m.kt Maven / Gradle / Ivy

The newest version!
package compose.icons.simpleicons

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.SimpleIcons

public val SimpleIcons._3m: ImageVector
    get() {
        if (__3m != null) {
            return __3m!!
        }
        __3m = Builder(name = "_3m", 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(18.903f, 5.954f)
                lineTo(17.17f, 13.03f)
                lineToRelative(-1.739f, -7.076f)
                horizontalLineToRelative(-5.099f)
                verticalLineToRelative(2.613f)
                curveTo(9.72f, 6.28f, 7.56f, 5.706f, 5.558f, 5.674f)
                curveTo(3.12f, 5.641f, 0.563f, 6.701f, 0.469f, 9.936f)
                horizontalLineToRelative(3.373f)
                curveToRelative(0.0f, -0.977f, 0.747f, -1.536f, 1.588f, -1.523f)
                curveToRelative(1.032f, -0.008f, 1.508f, 0.434f, 1.533f, 1.124f)
                curveToRelative(-0.036f, 0.597f, -0.387f, 1.014f, -1.525f, 1.014f)
                lineTo(4.303f, 10.551f)
                lineTo(4.303f, 12.9f)
                horizontalLineToRelative(1.03f)
                curveToRelative(0.584f, 0.0f, 1.399f, 0.319f, 1.431f, 1.155f)
                curveToRelative(0.04f, 0.995f, -0.652f, 1.435f, -1.501f, 1.443f)
                curveToRelative(-1.517f, -0.053f, -1.763f, -1.225f, -1.763f, -2.23f)
                lineTo(0.0f, 13.268f)
                curveToRelative(0.015f, 0.677f, -0.151f, 5.091f, 5.337f, 5.059f)
                curveToRelative(2.629f, 0.025f, 4.464f, -1.085f, 5.003f, -2.613f)
                verticalLineToRelative(2.342f)
                horizontalLineToRelative(3.455f)
                verticalLineToRelative(-7.632f)
                lineToRelative(1.867f, 7.634f)
                horizontalLineToRelative(3.018f)
                lineToRelative(1.875f, -7.626f)
                verticalLineToRelative(7.634f)
                lineTo(24.0f, 18.066f)
                lineTo(24.0f, 5.954f)
                horizontalLineToRelative(-5.097f)
                close()
                moveTo(10.342f, 13.014f)
                curveToRelative(-0.429f, -0.893f, -1.034f, -1.284f, -1.376f, -1.407f)
                curveToRelative(0.714f, -0.319f, 1.09f, -0.751f, 1.376f, -1.614f)
                verticalLineToRelative(3.021f)
                close()
            }
        }
        .build()
        return __3m!!
    }

private var __3m: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy