commonMain.compose.icons.tablericons.filled.JewishStar.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
The newest version!
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.JewishStar: ImageVector
get() {
if (_jewishStar != null) {
return _jewishStar!!
}
_jewishStar = Builder(name = "JewishStar", 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(8.433f, 6.0f)
horizontalLineToRelative(-5.433f)
lineToRelative(-0.114f, 0.006f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.743f, 1.508f)
lineToRelative(2.69f, 4.486f)
lineToRelative(-2.69f, 4.486f)
lineToRelative(-0.054f, 0.1f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.911f, 1.414f)
horizontalLineToRelative(5.434f)
lineToRelative(2.709f, 4.514f)
lineToRelative(0.074f, 0.108f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.64f, -0.108f)
lineToRelative(2.708f, -4.514f)
horizontalLineToRelative(5.435f)
lineToRelative(0.114f, -0.006f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.743f, -1.508f)
lineToRelative(-2.691f, -4.486f)
lineToRelative(2.691f, -4.486f)
lineToRelative(0.054f, -0.1f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.911f, -1.414f)
horizontalLineToRelative(-5.434f)
lineToRelative(-2.709f, -4.514f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.714f, 0.0f)
lineToRelative(-2.71f, 4.514f)
close()
}
}
.build()
return _jewishStar!!
}
private var _jewishStar: ImageVector? = null