commonMain.compose.icons.weathericons.DirectionUpRight.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.DirectionUpRight: ImageVector
get() {
if (_directionUpRight != null) {
return _directionUpRight!!
}
_directionUpRight = Builder(name = "DirectionUpRight", 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(10.05f, 17.55f)
curveToRelative(0.0f, 0.3f, 0.09f, 0.55f, 0.26f, 0.73f)
curveToRelative(0.2f, 0.19f, 0.46f, 0.28f, 0.79f, 0.28f)
curveToRelative(0.3f, 0.0f, 0.55f, -0.09f, 0.73f, -0.28f)
lineToRelative(6.04f, -6.05f)
verticalLineToRelative(1.95f)
curveToRelative(0.0f, 0.3f, 0.1f, 0.55f, 0.3f, 0.75f)
curveToRelative(0.2f, 0.2f, 0.45f, 0.3f, 0.75f, 0.3f)
curveToRelative(0.29f, 0.0f, 0.54f, -0.1f, 0.74f, -0.31f)
reflectiveCurveToRelative(0.3f, -0.45f, 0.3f, -0.75f)
verticalLineTo(9.7f)
curveToRelative(0.0f, -0.3f, -0.1f, -0.55f, -0.3f, -0.75f)
reflectiveCurveToRelative(-0.45f, -0.3f, -0.74f, -0.3f)
horizontalLineToRelative(-4.5f)
curveToRelative(-0.29f, 0.0f, -0.54f, 0.1f, -0.73f, 0.3f)
reflectiveCurveTo(13.4f, 9.39f, 13.4f, 9.7f)
curveToRelative(0.0f, 0.29f, 0.1f, 0.54f, 0.29f, 0.73f)
reflectiveCurveToRelative(0.44f, 0.29f, 0.73f, 0.29f)
horizontalLineToRelative(1.95f)
lineToRelative(-6.06f, 6.06f)
curveTo(10.14f, 16.99f, 10.05f, 17.25f, 10.05f, 17.55f)
close()
}
}
.build()
return _directionUpRight!!
}
private var _directionUpRight: ImageVector? = null