commonMain.compose.icons.tablericons.filled.Macro.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.Macro: ImageVector
get() {
if (_macro != null) {
return _macro!!
}
_macro = Builder(name = "Macro", 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(17.994f, 2.888f)
lineToRelative(0.006f, 0.112f)
verticalLineToRelative(3.0f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.0f, 5.916f)
verticalLineToRelative(4.186f)
arcToRelative(6.98f, 6.98f, 0.0f, false, true, 5.0f, -2.102f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f)
arcToRelative(7.0f, 7.0f, 0.0f, false, true, -14.0f, 0.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f)
curveToRelative(1.96f, 0.0f, 3.731f, 0.805f, 5.002f, 2.103f)
lineToRelative(-0.002f, -4.186f)
arcToRelative(6.0f, 6.0f, 0.0f, false, true, -5.0f, -5.917f)
verticalLineToRelative(-3.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.555f, -0.832f)
lineToRelative(2.317f, 1.544f)
lineToRelative(1.42f, -1.42f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.32f, -0.082f)
lineToRelative(0.095f, 0.083f)
lineToRelative(1.42f, 1.419f)
lineToRelative(2.318f, -1.544f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.55f, 0.72f)
moveToRelative(-10.865f, 13.24f)
lineToRelative(0.03f, 0.134f)
arcToRelative(5.01f, 5.01f, 0.0f, false, false, 3.71f, 3.61f)
arcToRelative(5.0f, 5.0f, 0.0f, false, false, -3.74f, -3.744f)
moveToRelative(9.742f, 0.002f)
lineToRelative(-0.134f, 0.03f)
arcToRelative(5.01f, 5.01f, 0.0f, false, false, -3.61f, 3.71f)
arcToRelative(5.0f, 5.0f, 0.0f, false, false, 3.744f, -3.74f)
}
}
.build()
return _macro!!
}
private var _macro: ImageVector? = null