commonMain.compose.icons.tablericons.filled.Compass.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.Compass: ImageVector
get() {
if (_compass != null) {
return _compass!!
}
_compass = Builder(name = "Compass", 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.0f, 3.34f)
arcToRelative(10.0f, 10.0f, 0.0f, true, true, -15.0f, 8.66f)
lineToRelative(0.005f, -0.324f)
arcToRelative(10.0f, 10.0f, 0.0f, false, true, 14.995f, -8.336f)
close()
moveTo(12.0f, 18.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
close()
moveTo(15.684f, 7.051f)
lineToRelative(-6.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.633f, 0.633f)
lineToRelative(-2.007f, 6.026f)
lineToRelative(-0.023f, 0.086f)
lineToRelative(-0.017f, 0.113f)
lineToRelative(-0.004f, 0.068f)
verticalLineToRelative(0.044f)
lineToRelative(0.009f, 0.111f)
lineToRelative(0.012f, 0.07f)
lineToRelative(0.04f, 0.144f)
lineToRelative(0.045f, 0.1f)
lineToRelative(0.054f, 0.095f)
lineToRelative(0.064f, 0.09f)
lineToRelative(0.069f, 0.075f)
lineToRelative(0.084f, 0.074f)
lineToRelative(0.098f, 0.07f)
lineToRelative(0.1f, 0.054f)
lineToRelative(0.078f, 0.033f)
lineToRelative(0.105f, 0.033f)
lineToRelative(0.109f, 0.02f)
lineToRelative(0.043f, 0.005f)
lineToRelative(0.068f, 0.004f)
horizontalLineToRelative(0.044f)
lineToRelative(0.111f, -0.009f)
lineToRelative(0.07f, -0.012f)
lineToRelative(0.02f, -0.006f)
lineToRelative(0.019f, -0.002f)
lineToRelative(0.074f, -0.022f)
lineToRelative(6.0f, -2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.633f, -0.633f)
lineToRelative(2.0f, -6.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.265f, -1.265f)
close()
moveTo(14.419f, 9.58f)
lineToRelative(-1.21f, 3.629f)
lineToRelative(-3.629f, 1.21f)
lineToRelative(1.21f, -3.629f)
lineToRelative(3.629f, -1.21f)
close()
moveTo(5.0f, 11.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
close()
moveTo(19.0f, 11.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
close()
moveTo(12.0f, 4.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
close()
}
}
.build()
return _compass!!
}
private var _compass: ImageVector? = null