commonMain.compose.icons.tablericons.outline.Star.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.outline
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.Round
import androidx.compose.ui.graphics.StrokeJoin
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.OutlineGroup
public val OutlineGroup.Star: ImageVector
get() {
if (_star != null) {
return _star!!
}
_star = Builder(name = "Star", defaultWidth = 24.0.dp, defaultHeight = 24.0.dp,
viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.0f, 17.75f)
lineToRelative(-6.172f, 3.245f)
lineToRelative(1.179f, -6.873f)
lineToRelative(-5.0f, -4.867f)
lineToRelative(6.9f, -1.0f)
lineToRelative(3.086f, -6.253f)
lineToRelative(3.086f, 6.253f)
lineToRelative(6.9f, 1.0f)
lineToRelative(-5.0f, 4.867f)
lineToRelative(1.179f, 6.873f)
close()
}
}
.build()
return _star!!
}
private var _star: ImageVector? = null