commonMain.compose.icons.tablericons.outline.HemisphereOff.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tabler-icons Show documentation
Show all versions of tabler-icons Show documentation
Fork of BenjaminHalko's implementation of DevSrSouza's Compose Icons
package compose.icons.tablericons.outline
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.Round
import androidx.compose.ui.graphics.StrokeJoin
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.tablericons.OutlineGroup
public val OutlineGroup.HemisphereOff: ImageVector
get() {
if (_hemisphereOff != null) {
return _hemisphereOff!!
}
_hemisphereOff = Builder(name = "HemisphereOff", defaultWidth = 24.0.dp, defaultHeight =
24.0.dp, viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(6.588f, 6.603f)
curveToRelative(-2.178f, 0.547f, -3.588f, 1.417f, -3.588f, 2.397f)
curveToRelative(0.0f, 1.657f, 4.03f, 3.0f, 9.0f, 3.0f)
moveToRelative(3.72f, -0.267f)
curveToRelative(3.114f, -0.473f, 5.28f, -1.518f, 5.28f, -2.733f)
curveToRelative(0.0f, -1.657f, -4.03f, -3.0f, -9.0f, -3.0f)
curveToRelative(-0.662f, 0.0f, -1.308f, 0.024f, -1.93f, 0.07f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(3.0f, 9.0f)
arcToRelative(9.0f, 9.0f, 0.0f, false, false, 13.677f, 7.69f)
moveToRelative(2.165f, -1.843f)
arcToRelative(8.965f, 8.965f, 0.0f, false, false, 2.158f, -5.847f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(3.0f, 3.0f)
lineToRelative(18.0f, 18.0f)
}
}
.build()
return _hemisphereOff!!
}
private var _hemisphereOff: ImageVector? = null