commonMain.compose.icons.tablericons.filled.Pointer.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.Pointer: ImageVector
get() {
if (_pointer != null) {
return _pointer!!
}
_pointer = Builder(name = "Pointer", 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(3.039f, 4.277f)
lineToRelative(3.904f, 13.563f)
curveToRelative(0.185f, 0.837f, 0.92f, 1.516f, 1.831f, 1.642f)
lineToRelative(0.17f, 0.016f)
arcToRelative(2.2f, 2.2f, 0.0f, false, false, 1.982f, -1.006f)
lineToRelative(0.045f, -0.078f)
lineToRelative(1.4f, -2.072f)
lineToRelative(4.05f, 4.05f)
arcToRelative(2.067f, 2.067f, 0.0f, false, false, 2.924f, 0.0f)
lineToRelative(1.047f, -1.047f)
curveToRelative(0.388f, -0.388f, 0.606f, -0.913f, 0.606f, -1.461f)
lineToRelative(-0.008f, -0.182f)
arcToRelative(2.067f, 2.067f, 0.0f, false, false, -0.598f, -1.28f)
lineToRelative(-4.047f, -4.048f)
lineToRelative(2.103f, -1.412f)
curveToRelative(0.726f, -0.385f, 1.18f, -1.278f, 1.053f, -2.189f)
arcToRelative(2.2f, 2.2f, 0.0f, false, false, -1.701f, -1.845f)
lineToRelative(-13.524f, -3.89f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -1.236f, 1.24f)
close()
}
}
.build()
return _pointer!!
}
private var _pointer: ImageVector? = null