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.Beef.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.Beef: ImageVector
get() {
if (_Beef != null) {
return _Beef!!
}
_Beef = ImageVector.Builder(
name = "Beef",
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(15f, 8.5f)
arcTo(2.5f, 2.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 12.5f, 11f)
arcTo(2.5f, 2.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 10f, 8.5f)
arcTo(2.5f, 2.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 15f, 8.5f)
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(12.5f, 2f)
arcToRelative(6.5f, 6.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, -6.22f, 4.6f)
curveToRelative(-1.1f, 3.13f, -0.78f, 3.9f, -3.18f, 6.08f)
arcTo(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, 5f, 18f)
curveToRelative(4f, 0f, 8.4f, -1.8f, 11.4f, -4.3f)
arcTo(6.5f, 6.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 12.5f, 2f)
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(18.5f, 6f)
lineToRelative(2.19f, 4.5f)
arcToRelative(6.48f, 6.48f, 0f, isMoreThanHalf = false, isPositiveArc = true, 0.31f, 2f)
arcToRelative(6.49f, 6.49f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2.6f, 5.2f)
curveTo(15.4f, 20.2f, 11f, 22f, 7f, 22f)
arcToRelative(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2.68f, -1.66f)
lineTo(2.4f, 16.5f)
}
}.build()
return _Beef!!
}
private var _Beef: ImageVector? = null