commonMain.com.composables.icons.lucide.Star.kt Maven / Gradle / Ivy
package com.composables.icons.lucide
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeJoin
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
public val Lucide.Star: ImageVector
get() {
if (_Star != null) {
return _Star!!
}
_Star = ImageVector.Builder(
name = "Star",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f
).apply {
path(
fill = null,
fillAlpha = 1.0f,
stroke = SolidColor(Color(0xFF000000)),
strokeAlpha = 1.0f,
strokeLineWidth = 2f,
strokeLineCap = StrokeCap.Round,
strokeLineJoin = StrokeJoin.Round,
strokeLineMiter = 1.0f,
pathFillType = PathFillType.NonZero
) {
moveTo(12f, 2f)
lineTo(15.09f, 8.26f)
lineTo(22f, 9.27f)
lineTo(17f, 14.14f)
lineTo(18.18f, 21.02f)
lineTo(12f, 17.77f)
lineTo(5.82f, 21.02f)
lineTo(7f, 14.14f)
lineTo(2f, 9.27f)
lineTo(8.91f, 8.26f)
lineTo(12f, 2f)
close()
}
}.build()
return _Star!!
}
private var _Star: ImageVector? = null