commonMain.compose.icons.tablericons.outline.DirectionSignOff.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.DirectionSignOff: ImageVector
get() {
if (_directionSignOff != null) {
return _directionSignOff!!
}
_directionSignOff = Builder(name = "DirectionSignOff", 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.73f, 14.724f)
lineToRelative(1.949f, -1.95f)
arcToRelative(1.095f, 1.095f, 0.0f, false, false, 0.0f, -1.548f)
lineToRelative(-7.905f, -7.905f)
arcToRelative(1.095f, 1.095f, 0.0f, false, false, -1.548f, 0.0f)
lineToRelative(-1.95f, 1.95f)
moveToRelative(-2.01f, 2.01f)
lineToRelative(-3.945f, 3.945f)
arcToRelative(1.095f, 1.095f, 0.0f, false, false, 0.0f, 1.548f)
lineToRelative(7.905f, 7.905f)
curveToRelative(0.427f, 0.428f, 1.12f, 0.428f, 1.548f, 0.0f)
lineToRelative(3.95f, -3.95f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(8.0f, 12.0f)
horizontalLineToRelative(4.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(13.748f, 13.752f)
lineToRelative(-1.748f, 1.748f)
}
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 _directionSignOff!!
}
private var _directionSignOff: ImageVector? = null