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.Apple.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.Apple: ImageVector
get() {
if (_Apple != null) {
return _Apple!!
}
_Apple = ImageVector.Builder(
name = "Apple",
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(12f, 20.94f)
curveToRelative(1.5f, 0f, 2.75f, 1.06f, 4f, 1.06f)
curveToRelative(3f, 0f, 6f, -8f, 6f, -12.22f)
arcTo(4.91f, 4.91f, 0f, isMoreThanHalf = false, isPositiveArc = false, 17f, 5f)
curveToRelative(-2.22f, 0f, -4f, 1.44f, -5f, 2f)
curveToRelative(-1f, -0.56f, -2.78f, -2f, -5f, -2f)
arcToRelative(4.9f, 4.9f, 0f, isMoreThanHalf = false, isPositiveArc = false, -5f, 4.78f)
curveTo(2f, 14f, 5f, 22f, 8f, 22f)
curveToRelative(1.25f, 0f, 2.5f, -1.06f, 4f, -1.06f)
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(10f, 2f)
curveToRelative(1f, 0.5f, 2f, 2f, 2f, 5f)
}
}.build()
return _Apple!!
}
private var _Apple: ImageVector? = null