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

commonMain.compose.icons.lineaicons.weather.MoondownFull.kt Maven / Gradle / Ivy

package compose.icons.lineaicons.weather

import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt
import androidx.compose.ui.graphics.StrokeJoin
import androidx.compose.ui.graphics.StrokeJoin.Companion.Bevel
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.lineaicons.WeatherGroup

public val WeatherGroup.MoondownFull: ImageVector
    get() {
        if (_moondownFull != null) {
            return _moondownFull!!
        }
        _moondownFull = Builder(name = "MoondownFull", defaultWidth = 64.0.dp, defaultHeight =
                64.0.dp, viewportWidth = 64.0f, viewportHeight = 64.0f).apply {
            path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
                    strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
                    strokeLineMiter = 4.0f, pathFillType = NonZero) {
                moveTo(0.0f, 47.0f)
                lineTo(64.0f, 47.0f)
            }
            path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
                    strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Bevel,
                    strokeLineMiter = 4.0f, pathFillType = NonZero) {
                moveTo(25.0f, 53.0f)
                lineToRelative(7.0f, 7.0f)
                lineToRelative(7.0f, -7.0f)
            }
            path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
                    strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
                    strokeLineMiter = 4.0f, pathFillType = NonZero) {
                moveTo(48.159f, 47.0f)
                curveTo(49.96f, 44.096f, 51.0f, 40.669f, 51.0f, 37.0f)
                curveToRelative(0.0f, -10.493f, -8.506f, -19.0f, -19.0f, -19.0f)
                reflectiveCurveToRelative(-19.0f, 8.507f, -19.0f, 19.0f)
                curveToRelative(0.0f, 3.668f, 1.04f, 7.094f, 2.841f, 9.998f)
            }
        }
        .build()
        return _moondownFull!!
    }

private var _moondownFull: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy