commonMain.com.composables.icons.lucide.Facebook.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.Facebook: ImageVector
get() {
if (_Facebook != null) {
return _Facebook!!
}
_Facebook = ImageVector.Builder(
name = "Facebook",
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(18f, 2f)
horizontalLineToRelative(-3f)
arcToRelative(5f, 5f, 0f, isMoreThanHalf = false, isPositiveArc = false, -5f, 5f)
verticalLineToRelative(3f)
horizontalLineTo(7f)
verticalLineToRelative(4f)
horizontalLineToRelative(3f)
verticalLineToRelative(8f)
horizontalLineToRelative(4f)
verticalLineToRelative(-8f)
horizontalLineToRelative(3f)
lineToRelative(1f, -4f)
horizontalLineToRelative(-4f)
verticalLineTo(7f)
arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 1f, -1f)
horizontalLineToRelative(3f)
close()
}
}.build()
return _Facebook!!
}
private var _Facebook: ImageVector? = null