commonMain.compose.icons.tablericons.filled.MoodWrrr.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.MoodWrrr: ImageVector
get() {
if (_moodWrrr != null) {
return _moodWrrr!!
}
_moodWrrr = Builder(name = "MoodWrrr", 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.0f, 2.0f)
curveToRelative(5.523f, 0.0f, 10.0f, 4.477f, 10.0f, 10.0f)
reflectiveCurveToRelative(-4.477f, 10.0f, -10.0f, 10.0f)
arcToRelative(10.0f, 10.0f, 0.0f, true, true, 0.0f, -20.0f)
moveToRelative(3.707f, 12.293f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.262f, -0.125f)
lineToRelative(-0.945f, 0.63f)
lineToRelative(-0.945f, -0.63f)
lineToRelative(-0.116f, -0.066f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.994f, 0.066f)
lineToRelative(-0.945f, 0.63f)
lineToRelative(-0.945f, -0.63f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.262f, 0.125f)
lineToRelative(-1.0f, 1.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.414f)
lineToRelative(0.094f, 0.083f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.32f, -0.083f)
lineToRelative(0.42f, -0.42f)
lineToRelative(0.818f, 0.545f)
lineToRelative(0.116f, 0.066f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.994f, -0.066f)
lineToRelative(0.945f, -0.63f)
lineToRelative(0.945f, 0.63f)
lineToRelative(0.116f, 0.066f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.994f, -0.066f)
lineToRelative(0.817f, -0.545f)
lineToRelative(0.42f, 0.42f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.415f, -1.414f)
close()
moveTo(9.207f, 7.793f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.414f, 0.0f)
lineToRelative(-0.083f, 0.094f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.083f, 1.32f)
lineToRelative(0.792f, 0.793f)
lineToRelative(-0.792f, 0.793f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.414f, 1.414f)
lineToRelative(1.5f, -1.5f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.414f)
close()
moveTo(16.207f, 7.793f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.414f, 0.0f)
lineToRelative(-1.5f, 1.5f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 1.414f)
lineToRelative(1.5f, 1.5f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.414f, 0.0f)
lineToRelative(0.083f, -0.094f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.083f, -1.32f)
lineToRelative(-0.792f, -0.793f)
lineToRelative(0.792f, -0.793f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -1.414f)
}
}
.build()
return _moodWrrr!!
}
private var _moodWrrr: ImageVector? = null