commonMain.compose.icons.tablericons.outline.Salad.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.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.Salad: ImageVector
get() {
if (_salad != null) {
return _salad!!
}
_salad = Builder(name = "Salad", 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(4.0f, 11.0f)
horizontalLineToRelative(16.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f)
verticalLineToRelative(0.5f)
curveToRelative(0.0f, 1.5f, -2.517f, 5.573f, -4.0f, 6.5f)
verticalLineToRelative(1.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f)
horizontalLineToRelative(-8.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f)
verticalLineToRelative(-1.0f)
curveToRelative(-1.687f, -1.054f, -4.0f, -5.0f, -4.0f, -6.5f)
verticalLineToRelative(-0.5f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f)
close()
}
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.5f, 11.0f)
curveToRelative(0.351f, -1.017f, 0.426f, -2.236f, 0.5f, -3.714f)
verticalLineToRelative(-1.286f)
horizontalLineToRelative(-2.256f)
curveToRelative(-2.83f, 0.0f, -4.616f, 0.804f, -5.64f, 2.076f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(5.255f, 11.008f)
arcToRelative(12.204f, 12.204f, 0.0f, false, true, -0.255f, -2.008f)
verticalLineToRelative(-1.0f)
horizontalLineToRelative(1.755f)
curveToRelative(0.98f, 0.0f, 1.801f, 0.124f, 2.479f, 0.35f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(8.0f, 8.0f)
lineToRelative(1.0f, -4.0f)
lineToRelative(4.0f, 2.5f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(13.0f, 11.0f)
verticalLineToRelative(-0.5f)
arcToRelative(2.5f, 2.5f, 0.0f, true, false, -5.0f, 0.0f)
verticalLineToRelative(0.5f)
}
}
.build()
return _salad!!
}
private var _salad: ImageVector? = null