commonMain.compose.icons.tablericons.filled.ChartArea.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
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.Butt
import androidx.compose.ui.graphics.StrokeJoin
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.ChartArea: ImageVector
get() {
if (_chartArea != null) {
return _chartArea!!
}
_chartArea = Builder(name = "ChartArea", 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(20.0f, 18.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.117f, 1.993f)
lineToRelative(-0.117f, 0.007f)
horizontalLineToRelative(-16.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.117f, -1.993f)
lineToRelative(0.117f, -0.007f)
horizontalLineToRelative(16.0f)
close()
}
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(15.22f, 5.375f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.393f, -0.165f)
lineToRelative(0.094f, 0.083f)
lineToRelative(4.0f, 4.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.284f, 0.576f)
lineToRelative(0.009f, 0.131f)
verticalLineToRelative(5.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.883f, 0.993f)
lineToRelative(-0.117f, 0.007f)
horizontalLineToRelative(-16.022f)
lineToRelative(-0.11f, -0.009f)
lineToRelative(-0.11f, -0.02f)
lineToRelative(-0.107f, -0.034f)
lineToRelative(-0.105f, -0.046f)
lineToRelative(-0.1f, -0.059f)
lineToRelative(-0.094f, -0.07f)
lineToRelative(-0.06f, -0.055f)
lineToRelative(-0.072f, -0.082f)
lineToRelative(-0.064f, -0.089f)
lineToRelative(-0.054f, -0.096f)
lineToRelative(-0.016f, -0.035f)
lineToRelative(-0.04f, -0.103f)
lineToRelative(-0.027f, -0.106f)
lineToRelative(-0.015f, -0.108f)
lineToRelative(-0.004f, -0.11f)
lineToRelative(0.009f, -0.11f)
lineToRelative(0.019f, -0.105f)
curveToRelative(0.01f, -0.04f, 0.022f, -0.077f, 0.035f, -0.112f)
lineToRelative(0.046f, -0.105f)
lineToRelative(0.059f, -0.1f)
lineToRelative(4.0f, -6.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.165f, -0.39f)
lineToRelative(0.114f, 0.05f)
lineToRelative(3.277f, 1.638f)
lineToRelative(3.495f, -4.369f)
close()
}
}
.build()
return _chartArea!!
}
private var _chartArea: ImageVector? = null