commonMain.compose.icons.weathericons.MoonAltWaningGibbous6.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.MoonAltWaningGibbous6: ImageVector
get() {
if (_moonAltWaningGibbous6 != null) {
return _moonAltWaningGibbous6!!
}
_moonAltWaningGibbous6 = Builder(name = "MoonAltWaningGibbous6", 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, -1.52f, 0.3f, -2.98f, 0.89f, -4.37f)
reflectiveCurveToRelative(1.4f, -2.58f, 2.4f, -3.59f)
reflectiveCurveToRelative(2.2f, -1.81f, 3.59f, -2.4f)
reflectiveCurveToRelative(2.84f, -0.89f, 4.37f, -0.89f)
reflectiveCurveToRelative(2.98f, 0.3f, 4.37f, 0.89f)
reflectiveCurveToRelative(2.59f, 1.4f, 3.6f, 2.4f)
reflectiveCurveToRelative(1.81f, 2.2f, 2.4f, 3.59f)
reflectiveCurveToRelative(0.89f, 2.84f, 0.89f, 4.37f)
reflectiveCurveToRelative(-0.3f, 2.98f, -0.89f, 4.37f)
reflectiveCurveToRelative(-1.4f, 2.59f, -2.4f, 3.6f)
reflectiveCurveToRelative(-2.2f, 1.81f, -3.6f, 2.4f)
reflectiveCurveToRelative(-2.85f, 0.89f, -4.37f, 0.89f)
reflectiveCurveToRelative(-2.98f, -0.3f, -4.37f, -0.89f)
reflectiveCurveToRelative(-2.58f, -1.4f, -3.59f, -2.4f)
reflectiveCurveToRelative(-1.81f, -2.2f, -2.4f, -3.6f)
reflectiveCurveTo(3.74f, 15.97f, 3.74f, 14.44f)
close()
moveTo(4.94f, 14.44f)
curveToRelative(0.0f, 1.37f, 0.27f, 2.67f, 0.8f, 3.91f)
reflectiveCurveToRelative(1.25f, 2.31f, 2.15f, 3.21f)
reflectiveCurveToRelative(1.97f, 1.61f, 3.21f, 2.15f)
reflectiveCurveToRelative(2.54f, 0.8f, 3.9f, 0.8f)
horizontalLineToRelative(0.38f)
curveToRelative(0.67f, -2.49f, 1.01f, -5.84f, 1.01f, -10.06f)
curveToRelative(0.0f, -3.82f, -0.34f, -7.17f, -1.03f, -10.05f)
horizontalLineToRelative(-0.37f)
curveToRelative(-1.36f, 0.0f, -2.66f, 0.27f, -3.9f, 0.8f)
reflectiveCurveTo(8.79f, 6.44f, 7.89f, 7.34f)
reflectiveCurveToRelative(-1.61f, 1.97f, -2.15f, 3.21f)
reflectiveCurveTo(4.94f, 13.09f, 4.94f, 14.44f)
close()
}
}
.build()
return _moonAltWaningGibbous6!!
}
private var _moonAltWaningGibbous6: ImageVector? = null