commonMain.compose.icons.weathericons.Time3.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.Time3: ImageVector
get() {
if (_time3 != null) {
return _time3!!
}
_time3 = Builder(name = "Time3", 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.47f)
curveToRelative(0.0f, -2.04f, 0.51f, -3.93f, 1.52f, -5.66f)
reflectiveCurveToRelative(2.38f, -3.1f, 4.11f, -4.11f)
reflectiveCurveToRelative(3.61f, -1.51f, 5.64f, -1.51f)
curveToRelative(1.52f, 0.0f, 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)
reflectiveCurveToRelative(0.89f, 2.85f, 0.89f, 4.39f)
curveToRelative(0.0f, 1.52f, -0.3f, 2.98f, -0.89f, 4.37f)
reflectiveCurveToRelative(-1.4f, 2.59f, -2.4f, 3.59f)
reflectiveCurveToRelative(-2.2f, 1.8f, -3.59f, 2.39f)
reflectiveCurveToRelative(-2.84f, 0.89f, -4.37f, 0.89f)
curveToRelative(-1.53f, 0.0f, -3.0f, -0.3f, -4.39f, -0.89f)
reflectiveCurveToRelative(-2.59f, -1.4f, -3.6f, -2.4f)
reflectiveCurveToRelative(-1.8f, -2.2f, -2.4f, -3.58f)
reflectiveCurveTo(3.74f, 16.0f, 3.74f, 14.47f)
close()
moveTo(6.22f, 14.47f)
curveToRelative(0.0f, 2.37f, 0.86f, 4.43f, 2.59f, 6.18f)
curveToRelative(1.73f, 1.73f, 3.79f, 2.59f, 6.2f, 2.59f)
curveToRelative(1.58f, 0.0f, 3.05f, -0.39f, 4.39f, -1.18f)
reflectiveCurveToRelative(2.42f, -1.85f, 3.21f, -3.2f)
reflectiveCurveToRelative(1.19f, -2.81f, 1.19f, -4.39f)
reflectiveCurveToRelative(-0.4f, -3.05f, -1.19f, -4.4f)
reflectiveCurveToRelative(-1.86f, -2.42f, -3.21f, -3.21f)
reflectiveCurveToRelative(-2.81f, -1.18f, -4.39f, -1.18f)
reflectiveCurveToRelative(-3.05f, 0.39f, -4.39f, 1.18f)
reflectiveCurveTo(8.2f, 8.72f, 7.4f, 10.07f)
reflectiveCurveTo(6.22f, 12.89f, 6.22f, 14.47f)
close()
moveTo(14.14f, 14.47f)
verticalLineTo(7.81f)
curveToRelative(0.0f, -0.23f, 0.08f, -0.43f, 0.24f, -0.59f)
reflectiveCurveToRelative(0.36f, -0.24f, 0.59f, -0.24f)
reflectiveCurveToRelative(0.43f, 0.08f, 0.59f, 0.24f)
reflectiveCurveToRelative(0.24f, 0.36f, 0.24f, 0.59f)
verticalLineToRelative(5.82f)
horizontalLineToRelative(3.78f)
curveToRelative(0.23f, 0.0f, 0.43f, 0.08f, 0.59f, 0.24f)
reflectiveCurveToRelative(0.24f, 0.36f, 0.24f, 0.59f)
curveToRelative(0.0f, 0.22f, -0.08f, 0.42f, -0.24f, 0.59f)
curveToRelative(-0.16f, 0.17f, -0.36f, 0.25f, -0.59f, 0.25f)
horizontalLineToRelative(-4.44f)
curveToRelative(-0.03f, 0.01f, -0.09f, 0.01f, -0.18f, 0.01f)
curveToRelative(-0.23f, 0.0f, -0.43f, -0.08f, -0.59f, -0.24f)
reflectiveCurveTo(14.14f, 14.71f, 14.14f, 14.47f)
close()
}
}
.build()
return _time3!!
}
private var _time3: ImageVector? = null