commonMain.compose.icons.tablericons.filled.Spade.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.Spade: ImageVector
get() {
if (_spade != null) {
return _spade!!
}
_spade = Builder(name = "Spade", 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(11.327f, 2.26f)
arcToRelative(1395.065f, 1395.065f, 0.0f, false, false, -4.923f, 4.504f)
curveToRelative(-0.626f, 0.6f, -1.212f, 1.21f, -1.774f, 1.843f)
arcToRelative(6.528f, 6.528f, 0.0f, false, false, -0.314f, 8.245f)
lineToRelative(0.14f, 0.177f)
curveToRelative(1.012f, 1.205f, 2.561f, 1.755f, 4.055f, 1.574f)
lineToRelative(0.246f, -0.037f)
lineToRelative(-0.706f, 2.118f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.949f, 1.316f)
horizontalLineToRelative(6.0f)
lineToRelative(0.118f, -0.007f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.83f, -1.31f)
lineToRelative(-0.688f, -2.065f)
lineToRelative(0.104f, 0.02f)
curveToRelative(1.589f, 0.25f, 3.262f, -0.387f, 4.32f, -1.785f)
arcToRelative(6.527f, 6.527f, 0.0f, false, false, -0.311f, -8.243f)
arcToRelative(31.787f, 31.787f, 0.0f, false, false, -1.76f, -1.83f)
lineToRelative(-4.938f, -4.518f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.348f, -0.001f)
close()
}
}
.build()
return _spade!!
}
private var _spade: ImageVector? = null