commonMain.compose.icons.tablericons.filled.ShieldCheckered.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.ShieldCheckered: ImageVector
get() {
if (_shieldCheckered != null) {
return _shieldCheckered!!
}
_shieldCheckered = Builder(name = "ShieldCheckered", 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.013f, 12.0f)
verticalLineToRelative(9.754f)
arcToRelative(13.0f, 13.0f, 0.0f, false, true, -8.733f, -9.754f)
horizontalLineToRelative(8.734f)
close()
moveTo(20.297f, 15.794f)
arcToRelative(13.0f, 13.0f, 0.0f, false, true, -7.283f, 5.951f)
lineToRelative(-0.001f, -9.745f)
horizontalLineToRelative(8.708f)
arcToRelative(12.96f, 12.96f, 0.0f, false, true, -1.424f, 3.794f)
close()
moveTo(11.014f, 2.526f)
lineToRelative(-0.001f, 7.474f)
horizontalLineToRelative(-8.986f)
curveToRelative(-0.068f, -1.432f, 0.101f, -2.88f, 0.514f, -4.282f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.005f, -0.717f)
arcToRelative(11.0f, 11.0f, 0.0f, false, false, 7.192f, -2.256f)
lineToRelative(0.276f, -0.219f)
close()
moveTo(13.013f, 10.0f)
verticalLineToRelative(-7.453f)
lineToRelative(-0.09f, -0.073f)
arcToRelative(11.0f, 11.0f, 0.0f, false, false, 7.189f, 2.537f)
lineToRelative(0.342f, -0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.005f, 0.717f)
curveToRelative(0.413f, 1.403f, 0.582f, 2.85f, 0.514f, 4.282f)
horizontalLineToRelative(-8.96f)
close()
}
}
.build()
return _shieldCheckered!!
}
private var _shieldCheckered: ImageVector? = null