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.BeanOff.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.BeanOff: ImageVector
get() {
if (_BeanOff != null) {
return _BeanOff!!
}
_BeanOff = ImageVector.Builder(
name = "BeanOff",
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(9f, 9f)
curveToRelative(-0.64f, 0.64f, -1.521f, 0.954f, -2.402f, 1.165f)
arcTo(6f, 6f, 0f, isMoreThanHalf = false, isPositiveArc = false, 8f, 22f)
arcToRelative(13.96f, 13.96f, 0f, isMoreThanHalf = false, isPositiveArc = false, 9.9f, -4.1f)
}
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(10.75f, 5.093f)
arcTo(6f, 6f, 0f, isMoreThanHalf = false, isPositiveArc = true, 22f, 8f)
curveToRelative(0f, 2.411f, -0.61f, 4.68f, -1.683f, 6.66f)
}
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(5.341f, 10.62f)
arcToRelative(4f, 4f, 0f, isMoreThanHalf = false, isPositiveArc = false, 6.487f, 1.208f)
moveTo(10.62f, 5.341f)
arcToRelative(4.015f, 4.015f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2.039f, 2.04f)
}
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(2f, 2f)
lineTo(22f, 22f)
}
}.build()
return _BeanOff!!
}
private var _BeanOff: ImageVector? = null