All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.compose.icons.weathericons.MoonWaningCrescent3.kt Maven / Gradle / Ivy

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.MoonWaningCrescent3: ImageVector
    get() {
        if (_moonWaningCrescent3 != null) {
            return _moonWaningCrescent3!!
        }
        _moonWaningCrescent3 = Builder(name = "MoonWaningCrescent3", 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.09f, 4.1f)
                reflectiveCurveToRelative(3.61f, 1.51f, 5.65f, 1.51f)
                curveToRelative(-2.99f, -2.33f, -4.48f, -6.09f, -4.48f, -11.26f)
                curveToRelative(0.0f, -2.32f, 0.42f, -4.46f, 1.25f, -6.4f)
                reflectiveCurveToRelative(1.91f, -3.56f, 3.23f, -4.85f)
                curveToRelative(-2.04f, 0.0f, -3.92f, 0.5f, -5.65f, 1.51f)
                reflectiveCurveTo(6.26f, 7.07f, 5.25f, 8.8f)
                reflectiveCurveTo(3.74f, 12.4f, 3.74f, 14.44f)
                close()
            }
        }
        .build()
        return _moonWaningCrescent3!!
    }

private var _moonWaningCrescent3: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy