commonMain.compose.icons.tablericons.outline.FrustumPlus.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.outline
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.Round
import androidx.compose.ui.graphics.StrokeJoin
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.OutlineGroup
public val OutlineGroup.FrustumPlus: ImageVector
get() {
if (_frustumPlus != null) {
return _frustumPlus!!
}
_frustumPlus = Builder(name = "FrustumPlus", defaultWidth = 24.0.dp, defaultHeight =
24.0.dp, viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.841f, 21.309f)
arcToRelative(1.945f, 1.945f, 0.0f, false, true, -1.682f, 0.0f)
lineToRelative(-7.035f, -3.365f)
arcToRelative(1.99f, 1.99f, 0.0f, false, true, -1.064f, -2.278f)
lineToRelative(2.538f, -10.158f)
arcToRelative(1.98f, 1.98f, 0.0f, false, true, 1.11f, -1.328f)
lineToRelative(4.496f, -2.01f)
arcToRelative(1.95f, 1.95f, 0.0f, false, true, 1.59f, 0.0f)
lineToRelative(4.496f, 2.01f)
curveToRelative(0.554f, 0.246f, 0.963f, 0.736f, 1.112f, 1.328f)
lineToRelative(1.67f, 6.683f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(18.0f, 4.82f)
lineToRelative(-5.198f, 2.324f)
arcToRelative(1.963f, 1.963f, 0.0f, false, true, -1.602f, 0.0f)
lineToRelative(-5.2f, -2.325f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.0f, 7.32f)
verticalLineToRelative(14.18f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(16.0f, 19.0f)
horizontalLineToRelative(6.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(19.0f, 16.0f)
verticalLineToRelative(6.0f)
}
}
.build()
return _frustumPlus!!
}
private var _frustumPlus: ImageVector? = null