commonMain.compose.icons.tablericons.outline.SettingsOff.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.SettingsOff: ImageVector
get() {
if (_settingsOff != null) {
return _settingsOff!!
}
_settingsOff = Builder(name = "SettingsOff", 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(9.451f, 5.437f)
curveToRelative(0.418f, -0.218f, 0.75f, -0.609f, 0.874f, -1.12f)
curveToRelative(0.426f, -1.756f, 2.924f, -1.756f, 3.35f, 0.0f)
arcToRelative(1.724f, 1.724f, 0.0f, false, false, 2.573f, 1.066f)
curveToRelative(1.543f, -0.94f, 3.31f, 0.826f, 2.37f, 2.37f)
arcToRelative(1.724f, 1.724f, 0.0f, false, false, 1.065f, 2.572f)
curveToRelative(1.756f, 0.426f, 1.756f, 2.924f, 0.0f, 3.35f)
curveToRelative(-0.486f, 0.118f, -0.894f, 0.44f, -1.123f, 0.878f)
moveToRelative(-0.188f, 3.803f)
curveToRelative(-0.517f, 0.523f, -1.349f, 0.734f, -2.125f, 0.262f)
arcToRelative(1.724f, 1.724f, 0.0f, false, false, -2.572f, 1.065f)
curveToRelative(-0.426f, 1.756f, -2.924f, 1.756f, -3.35f, 0.0f)
arcToRelative(1.724f, 1.724f, 0.0f, false, false, -2.573f, -1.066f)
curveToRelative(-1.543f, 0.94f, -3.31f, -0.826f, -2.37f, -2.37f)
arcToRelative(1.724f, 1.724f, 0.0f, false, false, -1.065f, -2.572f)
curveToRelative(-1.756f, -0.426f, -1.756f, -2.924f, 0.0f, -3.35f)
arcToRelative(1.724f, 1.724f, 0.0f, false, false, 1.066f, -2.573f)
curveToRelative(-0.472f, -0.774f, -0.262f, -1.604f, 0.259f, -2.121f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(9.889f, 9.869f)
arcToRelative(3.0f, 3.0f, 0.0f, true, false, 4.226f, 4.26f)
moveToRelative(0.592f, -3.424f)
arcToRelative(3.012f, 3.012f, 0.0f, false, false, -1.419f, -1.415f)
}
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 _settingsOff!!
}
private var _settingsOff: ImageVector? = null