commonMain.compose.icons.tablericons.outline.AlertHexagonOff.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.AlertHexagonOff: ImageVector
get() {
if (_alertHexagonOff != null) {
return _alertHexagonOff!!
}
_alertHexagonOff = Builder(name = "AlertHexagonOff", 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(18.36f, 18.387f)
lineToRelative(-5.268f, 3.333f)
arcToRelative(2.269f, 2.269f, 0.0f, false, true, -2.184f, 0.0f)
lineToRelative(-6.75f, -4.27f)
arcToRelative(2.225f, 2.225f, 0.0f, false, true, -1.158f, -1.948f)
verticalLineToRelative(-7.285f)
curveToRelative(0.0f, -0.809f, 0.443f, -1.554f, 1.158f, -1.947f)
lineToRelative(1.317f, -0.777f)
moveToRelative(2.535f, -1.493f)
lineToRelative(2.898f, -1.709f)
arcToRelative(2.33f, 2.33f, 0.0f, false, true, 2.25f, 0.0f)
lineToRelative(6.75f, 3.98f)
horizontalLineToRelative(-0.033f)
curveToRelative(0.7f, 0.398f, 1.13f, 1.143f, 1.125f, 1.948f)
verticalLineToRelative(7.284f)
curveToRelative(0.0f, 0.414f, -0.116f, 0.812f, -0.326f, 1.155f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.0f, 7.0f)
verticalLineToRelative(1.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.0f, 8.0f)
verticalLineToRelative(0.01f)
}
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)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.0f, 16.0f)
horizontalLineToRelative(0.01f)
}
}
.build()
return _alertHexagonOff!!
}
private var _alertHexagonOff: ImageVector? = null