commonMain.compose.icons.tablericons.filled.CircleArrowLeft.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.CircleArrowLeft: ImageVector
get() {
if (_circleArrowLeft != null) {
return _circleArrowLeft!!
}
_circleArrowLeft = Builder(name = "CircleArrowLeft", 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(12.0f, 2.0f)
arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.324f, 19.995f)
lineToRelative(-0.324f, 0.005f)
lineToRelative(-0.324f, -0.005f)
arcToRelative(10.0f, 10.0f, 0.0f, false, true, 0.324f, -19.995f)
close()
moveTo(12.707f, 7.293f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.414f, 0.0f)
lineToRelative(-4.0f, 4.0f)
arcToRelative(1.048f, 1.048f, 0.0f, false, false, -0.083f, 0.094f)
lineToRelative(-0.064f, 0.092f)
lineToRelative(-0.052f, 0.098f)
lineToRelative(-0.044f, 0.11f)
lineToRelative(-0.03f, 0.112f)
lineToRelative(-0.017f, 0.126f)
lineToRelative(-0.003f, 0.075f)
lineToRelative(0.004f, 0.09f)
lineToRelative(0.007f, 0.058f)
lineToRelative(0.025f, 0.118f)
lineToRelative(0.035f, 0.105f)
lineToRelative(0.054f, 0.113f)
lineToRelative(0.043f, 0.07f)
lineToRelative(0.071f, 0.095f)
lineToRelative(0.054f, 0.058f)
lineToRelative(4.0f, 4.0f)
lineToRelative(0.094f, 0.083f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -1.497f)
lineToRelative(-2.292f, -2.293f)
horizontalLineToRelative(5.585f)
lineToRelative(0.117f, -0.007f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.117f, -1.993f)
horizontalLineToRelative(-5.586f)
lineToRelative(2.293f, -2.293f)
lineToRelative(0.083f, -0.094f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.083f, -1.32f)
close()
}
}
.build()
return _circleArrowLeft!!
}
private var _circleArrowLeft: ImageVector? = null