commonMain.compose.icons.tablericons.filled.CaretDown.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.CaretDown: ImageVector
get() {
if (_caretDown != null) {
return _caretDown!!
}
_caretDown = Builder(name = "CaretDown", 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(18.0f, 9.0f)
curveToRelative(0.852f, 0.0f, 1.297f, 0.986f, 0.783f, 1.623f)
lineToRelative(-0.076f, 0.084f)
lineToRelative(-6.0f, 6.0f)
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)
verticalLineToRelative(-0.118f)
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(12.059f, -0.002f)
close()
}
}
.build()
return _caretDown!!
}
private var _caretDown: ImageVector? = null