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.compose.icons.lineaicons.weather.WindSun.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.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.WindSun: ImageVector
get() {
if (_windSun != null) {
return _windSun!!
}
_windSun = Builder(name = "WindSun", 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(56.0f, 45.0f)
curveToRelative(4.19f, 0.0f, 7.0f, -2.81f, 7.0f, -7.0f)
curveToRelative(0.0f, -4.189f, -2.81f, -9.0f, -7.0f, -9.0f)
curveToRelative(0.0f, -10.475f, -9.525f, -18.0f, -20.0f, -18.0f)
curveToRelative(-9.271f, 0.0f, -17.348f, 6.211f, -19.0f, 15.0f)
curveToRelative(0.0f, 0.0f, -1.232f, 0.0f, -2.0f, 0.0f)
curveToRelative(-5.238f, 0.0f, -9.0f, 4.762f, -9.0f, 10.0f)
reflectiveCurveToRelative(3.762f, 9.0f, 9.0f, 9.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(29.999f, 11.752f)
curveTo(27.793f, 10.028f, 25.017f, 9.0f, 22.0f, 9.0f)
curveTo(14.82f, 9.0f, 9.0f, 14.82f, 9.0f, 22.0f)
curveToRelative(0.0f, 2.577f, 0.707f, 3.979f, 2.0f, 6.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(6.0f, 22.0f)
lineTo(0.0f, 22.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(22.0f, 6.0f)
lineTo(22.0f, 0.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(10.0f, 10.0f)
lineTo(4.0f, 4.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(27.0f, 58.0f)
curveToRelative(0.0f, 2.761f, 2.238f, 5.0f, 5.0f, 5.0f)
reflectiveCurveToRelative(5.0f, -2.239f, 5.0f, -5.0f)
reflectiveCurveToRelative(-2.238f, -5.0f, -5.0f, -5.0f)
horizontalLineTo(2.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Butt, strokeLineJoin = Miter,
strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(40.0f, 44.0f)
curveToRelative(0.0f, -2.761f, 2.238f, -5.0f, 5.0f, -5.0f)
reflectiveCurveToRelative(5.0f, 2.239f, 5.0f, 5.0f)
reflectiveCurveToRelative(-2.238f, 5.0f, -5.0f, 5.0f)
horizontalLineTo(4.0f)
}
}
.build()
return _windSun!!
}
private var _windSun: ImageVector? = null