commonMain.compose.icons.tablericons.filled.CaretUp.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.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.CaretUp: ImageVector
get() {
if (_caretUp != null) {
return _caretUp!!
}
_caretUp = Builder(name = "CaretUp", 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(11.293f, 7.293f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.083f)
lineToRelative(0.094f, 0.083f)
lineToRelative(6.0f, 6.0f)
lineToRelative(0.083f, 0.094f)
lineToRelative(0.054f, 0.077f)
lineToRelative(0.054f, 0.096f)
lineToRelative(0.017f, 0.036f)
lineToRelative(0.027f, 0.067f)
lineToRelative(0.032f, 0.108f)
lineToRelative(0.01f, 0.053f)
lineToRelative(0.01f, 0.06f)
lineToRelative(0.004f, 0.057f)
lineToRelative(0.002f, 0.059f)
lineToRelative(-0.002f, 0.059f)
lineToRelative(-0.005f, 0.058f)
lineToRelative(-0.009f, 0.06f)
lineToRelative(-0.01f, 0.052f)
lineToRelative(-0.032f, 0.108f)
lineToRelative(-0.027f, 0.067f)
lineToRelative(-0.07f, 0.132f)
lineToRelative(-0.065f, 0.09f)
lineToRelative(-0.073f, 0.081f)
lineToRelative(-0.094f, 0.083f)
lineToRelative(-0.077f, 0.054f)
lineToRelative(-0.096f, 0.054f)
lineToRelative(-0.036f, 0.017f)
lineToRelative(-0.067f, 0.027f)
lineToRelative(-0.108f, 0.032f)
lineToRelative(-0.053f, 0.01f)
lineToRelative(-0.06f, 0.01f)
lineToRelative(-0.057f, 0.004f)
lineToRelative(-0.059f, 0.002f)
horizontalLineToRelative(-12.0f)
curveToRelative(-0.852f, 0.0f, -1.297f, -0.986f, -0.783f, -1.623f)
lineToRelative(0.076f, -0.084f)
lineToRelative(6.0f, -6.0f)
close()
}
}
.build()
return _caretUp!!
}
private var _caretUp: ImageVector? = null