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

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

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.Gamejolt: ImageVector
    get() {
        if (_gamejolt != null) {
            return _gamejolt!!
        }
        _gamejolt = Builder(name = "Gamejolt", 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(6.353f, 0.0f)
                verticalLineToRelative(2.824f)
                lineTo(4.94f, 2.824f)
                verticalLineToRelative(2.823f)
                lineTo(3.53f, 5.647f)
                verticalLineToRelative(2.824f)
                lineTo(2.118f, 8.471f)
                verticalLineToRelative(2.823f)
                lineTo(0.706f, 11.294f)
                verticalLineToRelative(2.824f)
                horizontalLineToRelative(8.47f)
                verticalLineToRelative(2.823f)
                lineTo(7.765f, 16.941f)
                verticalLineToRelative(2.824f)
                lineTo(6.353f, 19.765f)
                verticalLineToRelative(2.823f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(-1.412f)
                horizontalLineToRelative(1.411f)
                verticalLineToRelative(-1.411f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(-1.412f)
                lineTo(12.0f, 18.353f)
                lineTo(12.0f, 16.94f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(-1.41f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(-1.411f)
                horizontalLineToRelative(1.411f)
                verticalLineToRelative(-1.412f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(-1.412f)
                horizontalLineToRelative(1.412f)
                lineTo(19.059f, 9.882f)
                horizontalLineToRelative(1.412f)
                lineTo(20.471f, 8.471f)
                horizontalLineToRelative(1.411f)
                lineTo(21.882f, 7.059f)
                horizontalLineToRelative(-4.235f)
                lineTo(17.647f, 5.647f)
                horizontalLineToRelative(1.412f)
                lineTo(19.059f, 4.235f)
                horizontalLineToRelative(1.412f)
                lineTo(20.471f, 2.824f)
                horizontalLineToRelative(1.411f)
                lineTo(21.882f, 1.412f)
                horizontalLineToRelative(1.412f)
                lineTo(23.294f, 0.0f)
                close()
                moveTo(6.353f, 22.588f)
                lineTo(4.94f, 22.588f)
                lineTo(4.94f, 24.0f)
                horizontalLineToRelative(1.412f)
                close()
                moveTo(7.765f, 2.824f)
                horizontalLineToRelative(9.882f)
                verticalLineToRelative(1.411f)
                horizontalLineToRelative(-1.412f)
                verticalLineToRelative(1.412f)
                horizontalLineToRelative(-1.411f)
                lineTo(14.824f, 7.06f)
                horizontalLineToRelative(-1.412f)
                verticalLineToRelative(1.41f)
                lineTo(12.0f, 8.47f)
                verticalLineToRelative(1.411f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(1.412f)
                lineTo(12.0f, 11.293f)
                lineTo(12.0f, 9.882f)
                horizontalLineToRelative(-1.412f)
                verticalLineToRelative(1.412f)
                lineTo(9.176f, 11.294f)
                lineTo(9.176f, 9.882f)
                lineTo(7.765f, 9.882f)
                verticalLineToRelative(1.412f)
                lineTo(6.353f, 11.294f)
                lineTo(6.353f, 9.882f)
                lineTo(4.94f, 9.882f)
                lineTo(4.94f, 8.471f)
                horizontalLineToRelative(1.412f)
                lineTo(6.352f, 5.647f)
                horizontalLineToRelative(1.412f)
                close()
                moveTo(6.353f, 8.47f)
                verticalLineToRelative(1.411f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(-1.41f)
                close()
                moveTo(9.176f, 9.881f)
                horizontalLineToRelative(1.412f)
                verticalLineToRelative(-1.41f)
                lineTo(9.176f, 8.471f)
                close()
                moveTo(14.824f, 9.881f)
                horizontalLineToRelative(1.411f)
                verticalLineToRelative(1.412f)
                horizontalLineToRelative(-1.411f)
                close()
            }
        }
        .build()
        return _gamejolt!!
    }

private var _gamejolt: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy