commonMain.compose.icons.weathericons.MoonWaningCrescent2.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of erikflowers-weather-icons Show documentation
Show all versions of erikflowers-weather-icons Show documentation
Compose icons is a set of open source icons packs for Compose Multiplatform
The newest version!
package compose.icons.weathericons
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt
import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.ImageVector.Builder
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import compose.icons.WeatherIcons
public val WeatherIcons.MoonWaningCrescent2: ImageVector
get() {
if (_moonWaningCrescent2 != null) {
return _moonWaningCrescent2!!
}
_moonWaningCrescent2 = Builder(name = "MoonWaningCrescent2", defaultWidth = 30.0.dp,
defaultHeight = 30.0.dp, viewportWidth = 30.0f, viewportHeight = 30.0f).apply {
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(3.74f, 14.44f)
curveToRelative(0.0f, 2.04f, 0.5f, 3.93f, 1.51f, 5.65f)
reflectiveCurveToRelative(2.37f, 3.1f, 4.1f, 4.1f)
reflectiveCurveToRelative(3.61f, 1.51f, 5.65f, 1.51f)
curveToRelative(-2.01f, -2.74f, -3.02f, -6.5f, -3.02f, -11.26f)
curveToRelative(0.0f, -3.98f, 1.01f, -7.73f, 3.02f, -11.25f)
curveToRelative(-2.04f, 0.0f, -3.93f, 0.5f, -5.65f, 1.51f)
reflectiveCurveToRelative(-3.1f, 2.37f, -4.1f, 4.09f)
reflectiveCurveTo(3.74f, 12.4f, 3.74f, 14.44f)
close()
}
}
.build()
return _moonWaningCrescent2!!
}
private var _moonWaningCrescent2: ImageVector? = null