All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
commonMain.compose.icons.octicons.GitCommit16.kt Maven / Gradle / Ivy
package compose.icons.octicons
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd
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.Octicons
public val Octicons.GitCommit16: ImageVector
get() {
if (_gitCommit16 != null) {
return _gitCommit16!!
}
_gitCommit16 = Builder(name = "GitCommit16", defaultWidth = 16.0.dp, defaultHeight =
16.0.dp, viewportWidth = 16.0f, viewportHeight = 16.0f).apply {
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = EvenOdd) {
moveTo(10.5f, 7.75f)
arcToRelative(2.5f, 2.5f, 0.0f, true, true, -5.0f, 0.0f)
arcToRelative(2.5f, 2.5f, 0.0f, false, true, 5.0f, 0.0f)
close()
moveTo(11.93f, 8.5f)
arcToRelative(4.002f, 4.002f, 0.0f, false, true, -7.86f, 0.0f)
lineTo(0.75f, 8.5f)
arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, -1.5f)
horizontalLineToRelative(3.32f)
arcToRelative(4.001f, 4.001f, 0.0f, false, true, 7.86f, 0.0f)
horizontalLineToRelative(3.32f)
arcToRelative(0.75f, 0.75f, 0.0f, true, true, 0.0f, 1.5f)
horizontalLineToRelative(-3.32f)
close()
}
}
.build()
return _gitCommit16!!
}
private var _gitCommit16: ImageVector? = null