commonMain.compose.icons.tablericons.filled.TransitionLeft.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
The newest version!
package compose.icons.tablericons.filled
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.tablericons.FilledGroup
public val FilledGroup.TransitionLeft: ImageVector
get() {
if (_transitionLeft != null) {
return _transitionLeft!!
}
_transitionLeft = Builder(name = "TransitionLeft", defaultWidth = 24.0.dp, defaultHeight =
24.0.dp, viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(6.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, 0.0f, 2.0f)
arcToRelative(2.0f, 2.0f, 0.0f, false, false, -2.0f, 2.0f)
verticalLineToRelative(12.0f)
arcToRelative(2.0f, 2.0f, 0.0f, false, false, 1.85f, 1.995f)
lineToRelative(0.15f, 0.005f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, 2.0f)
arcToRelative(4.0f, 4.0f, 0.0f, false, true, -4.0f, -4.0f)
verticalLineToRelative(-12.0f)
arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f)
moveToRelative(12.0f, 0.0f)
arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, 4.0f)
verticalLineToRelative(12.0f)
arcToRelative(4.0f, 4.0f, 0.0f, true, true, -8.0f, 0.0f)
verticalLineToRelative(-5.0f)
horizontalLineToRelative(-4.585f)
lineToRelative(1.292f, 1.293f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.083f, 1.32f)
lineToRelative(-0.083f, 0.094f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.414f, 0.0f)
lineToRelative(-3.0f, -3.0f)
lineToRelative(-0.097f, -0.112f)
lineToRelative(-0.071f, -0.11f)
lineToRelative(-0.031f, -0.062f)
lineToRelative(-0.034f, -0.081f)
lineToRelative(-0.024f, -0.076f)
lineToRelative(-0.025f, -0.118f)
lineToRelative(-0.007f, -0.058f)
lineToRelative(-0.004f, -0.108f)
lineToRelative(0.003f, -0.064f)
lineToRelative(0.017f, -0.119f)
lineToRelative(0.03f, -0.111f)
lineToRelative(0.044f, -0.111f)
lineToRelative(0.052f, -0.098f)
lineToRelative(0.067f, -0.096f)
lineToRelative(0.08f, -0.09f)
lineToRelative(3.0f, -3.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.414f, 1.414f)
lineToRelative(-1.292f, 1.293f)
horizontalLineToRelative(4.585f)
verticalLineToRelative(-5.0f)
arcToRelative(4.0f, 4.0f, 0.0f, false, true, 4.0f, -4.0f)
}
}
.build()
return _transitionLeft!!
}
private var _transitionLeft: ImageVector? = null