commonMain.compose.icons.tablericons.filled.BrandGithub.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.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.BrandGithub: ImageVector
get() {
if (_brandGithub != null) {
return _brandGithub!!
}
_brandGithub = Builder(name = "BrandGithub", 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(5.315f, 2.1f)
curveToRelative(0.791f, -0.113f, 1.9f, 0.145f, 3.333f, 0.966f)
lineToRelative(0.272f, 0.161f)
lineToRelative(0.16f, 0.1f)
lineToRelative(0.397f, -0.083f)
arcToRelative(13.3f, 13.3f, 0.0f, false, true, 4.59f, -0.08f)
lineToRelative(0.456f, 0.08f)
lineToRelative(0.396f, 0.083f)
lineToRelative(0.161f, -0.1f)
curveToRelative(1.385f, -0.84f, 2.487f, -1.17f, 3.322f, -1.148f)
lineToRelative(0.164f, 0.008f)
lineToRelative(0.147f, 0.017f)
lineToRelative(0.076f, 0.014f)
lineToRelative(0.05f, 0.011f)
lineToRelative(0.144f, 0.047f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.53f, 0.514f)
arcToRelative(5.2f, 5.2f, 0.0f, false, true, 0.397f, 2.91f)
lineToRelative(-0.047f, 0.267f)
lineToRelative(-0.046f, 0.196f)
lineToRelative(0.123f, 0.163f)
curveToRelative(0.574f, 0.795f, 0.93f, 1.728f, 1.03f, 2.707f)
lineToRelative(0.023f, 0.295f)
lineToRelative(0.007f, 0.272f)
curveToRelative(0.0f, 3.855f, -1.659f, 5.883f, -4.644f, 6.68f)
lineToRelative(-0.245f, 0.061f)
lineToRelative(-0.132f, 0.029f)
lineToRelative(0.014f, 0.161f)
lineToRelative(0.008f, 0.157f)
lineToRelative(0.004f, 0.365f)
lineToRelative(-0.002f, 0.213f)
lineToRelative(-0.003f, 3.834f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.883f, 0.993f)
lineToRelative(-0.117f, 0.007f)
horizontalLineToRelative(-6.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.993f, -0.883f)
lineToRelative(-0.007f, -0.117f)
verticalLineToRelative(-0.734f)
curveToRelative(-1.818f, 0.26f, -3.03f, -0.424f, -4.11f, -1.878f)
lineToRelative(-0.535f, -0.766f)
curveToRelative(-0.28f, -0.396f, -0.455f, -0.579f, -0.589f, -0.644f)
lineToRelative(-0.048f, -0.019f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.564f, -1.918f)
curveToRelative(0.642f, 0.188f, 1.074f, 0.568f, 1.57f, 1.239f)
lineToRelative(0.538f, 0.769f)
curveToRelative(0.76f, 1.079f, 1.36f, 1.459f, 2.609f, 1.191f)
lineToRelative(0.001f, -0.678f)
lineToRelative(-0.018f, -0.168f)
arcToRelative(5.03f, 5.03f, 0.0f, false, true, -0.021f, -0.824f)
lineToRelative(0.017f, -0.185f)
lineToRelative(0.019f, -0.12f)
lineToRelative(-0.108f, -0.024f)
curveToRelative(-2.976f, -0.71f, -4.703f, -2.573f, -4.875f, -6.139f)
lineToRelative(-0.01f, -0.31f)
lineToRelative(-0.004f, -0.292f)
arcToRelative(5.6f, 5.6f, 0.0f, false, true, 0.908f, -3.051f)
lineToRelative(0.152f, -0.222f)
lineToRelative(0.122f, -0.163f)
lineToRelative(-0.045f, -0.196f)
arcToRelative(5.2f, 5.2f, 0.0f, false, true, 0.145f, -2.642f)
lineToRelative(0.1f, -0.282f)
lineToRelative(0.106f, -0.253f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.529f, -0.514f)
lineToRelative(0.144f, -0.047f)
lineToRelative(0.154f, -0.03f)
close()
}
}
.build()
return _brandGithub!!
}
private var _brandGithub: ImageVector? = null