Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
commonMain.com.composables.icons.lucide.Crown.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.Crown: ImageVector
get() {
if (_Crown != null) {
return _Crown!!
}
_Crown = ImageVector.Builder(
name = "Crown",
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(11.562f, 3.266f)
arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 0.876f, 0f)
lineTo(15.39f, 8.87f)
arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1.516f, 0.294f)
lineTo(21.183f, 5.5f)
arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 0.798f, 0.519f)
lineToRelative(-2.834f, 10.246f)
arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, -0.956f, 0.734f)
horizontalLineTo(5.81f)
arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, -0.957f, -0.734f)
lineTo(2.02f, 6.02f)
arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 0.798f, -0.519f)
lineToRelative(4.276f, 3.664f)
arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1.516f, -0.294f)
close()
}
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(5f, 21f)
horizontalLineToRelative(14f)
}
}.build()
return _Crown!!
}
private var _Crown: ImageVector? = null