All Downloads are FREE. Search and download functionalities are using the official Maven repository.
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.MessageCircleHeart.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.MessageCircleHeart: ImageVector
get() {
if (_MessageCircleHeart != null) {
return _MessageCircleHeart!!
}
_MessageCircleHeart = ImageVector.Builder(
name = "MessageCircleHeart",
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(7.9f, 20f)
arcTo(9f, 9f, 0f, isMoreThanHalf = true, isPositiveArc = false, 4f, 16.1f)
lineTo(2f, 22f)
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(15.8f, 9.2f)
arcToRelative(2.5f, 2.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, -3.5f, 0f)
lineToRelative(-0.3f, 0.4f)
lineToRelative(-0.35f, -0.3f)
arcToRelative(2.42f, 2.42f, 0f, isMoreThanHalf = true, isPositiveArc = false, -3.2f, 3.6f)
lineToRelative(3.6f, 3.5f)
lineToRelative(3.6f, -3.5f)
curveToRelative(1.2f, -1.2f, 1.1f, -2.7f, 0.2f, -3.7f)
}
}.build()
return _MessageCircleHeart!!
}
private var _MessageCircleHeart: ImageVector? = null