commonMain.compose.icons.tablericons.filled.CookieMan.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.CookieMan: ImageVector
get() {
if (_cookieMan != null) {
return _cookieMan!!
}
_cookieMan = Builder(name = "CookieMan", 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(12.007f, 1.0f)
lineToRelative(0.238f, 0.005f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, 5.405f, 3.974f)
lineToRelative(0.078f, 0.233f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, -0.182f, 4.08f)
lineToRelative(-0.093f, 0.21f)
lineToRelative(0.05f, -0.002f)
arcToRelative(2.94f, 2.94f, 0.0f, false, true, 2.638f, 1.511f)
lineToRelative(0.081f, 0.158f)
arcToRelative(2.887f, 2.887f, 0.0f, false, true, -1.234f, 3.764f)
lineToRelative(-0.19f, 0.096f)
lineToRelative(-1.798f, 0.821f)
verticalLineToRelative(0.963f)
lineToRelative(1.166f, 1.166f)
lineToRelative(0.14f, 0.154f)
arcToRelative(2.96f, 2.96f, 0.0f, false, true, -0.17f, 4.002f)
curveToRelative(-1.087f, 1.088f, -2.827f, 1.161f, -4.03f, 0.144f)
lineToRelative(-0.16f, -0.146f)
lineToRelative(-1.946f, -1.948f)
lineToRelative(-1.946f, 1.947f)
arcToRelative(2.96f, 2.96f, 0.0f, false, true, -3.95f, 0.22f)
lineToRelative(-0.15f, -0.128f)
curveToRelative(-1.17f, -1.073f, -1.284f, -2.879f, -0.234f, -4.12f)
lineToRelative(0.146f, -0.158f)
lineToRelative(1.134f, -1.134f)
verticalLineToRelative(-0.962f)
lineToRelative(-1.834f, -0.84f)
lineToRelative(-0.181f, -0.093f)
arcToRelative(2.88f, 2.88f, 0.0f, false, true, -1.205f, -3.75f)
arcToRelative(2.93f, 2.93f, 0.0f, false, true, 2.646f, -1.661f)
lineToRelative(0.13f, 0.003f)
lineToRelative(-0.03f, -0.064f)
arcToRelative(6.1f, 6.1f, 0.0f, false, true, -0.503f, -1.968f)
lineToRelative(-0.017f, -0.26f)
verticalLineToRelative(-0.217f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, 5.775f, -5.996f)
lineToRelative(0.224f, -0.004f)
close()
moveTo(12.01f, 16.0f)
horizontalLineToRelative(-0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f)
horizontalLineToRelative(0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
moveToRelative(0.0f, -3.0f)
horizontalLineToRelative(-0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f)
horizontalLineToRelative(0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
moveToRelative(0.0f, -5.0f)
horizontalLineToRelative(-0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f)
horizontalLineToRelative(0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
moveToRelative(-2.0f, -3.0f)
horizontalLineToRelative(-0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f)
horizontalLineToRelative(0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
moveToRelative(4.0f, 0.0f)
horizontalLineToRelative(-0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f)
horizontalLineToRelative(0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
}
}
.build()
return _cookieMan!!
}
private var _cookieMan: ImageVector? = null