All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.com.composables.icons.lucide.Pickaxe.kt Maven / Gradle / Ivy

Go to download

Unstyled, fully accesible Compose Multiplatform components that you can customize to your heart's desire.

There is a newer version: 1.0.0
Show newest version
package com.composables.icons.lucide

import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeJoin
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp

public val Lucide.Pickaxe: ImageVector
	get() {
		if (_Pickaxe != null) {
			return _Pickaxe!!
		}
		_Pickaxe = ImageVector.Builder(
            name = "Pickaxe",
            defaultWidth = 24.dp,
            defaultHeight = 24.dp,
            viewportWidth = 24f,
            viewportHeight = 24f
        ).apply {
			path(
    			fill = null,
    			fillAlpha = 1.0f,
    			stroke = SolidColor(Color(0xFF000000)),
    			strokeAlpha = 1.0f,
    			strokeLineWidth = 2f,
    			strokeLineCap = StrokeCap.Round,
    			strokeLineJoin = StrokeJoin.Round,
    			strokeLineMiter = 1.0f,
    			pathFillType = PathFillType.NonZero
			) {
				moveTo(14.531f, 12.469f)
				lineTo(6.619f, 20.38f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = true, isPositiveArc = true, -3f, -3f)
				lineToRelative(7.912f, -7.912f)
			}
			path(
    			fill = null,
    			fillAlpha = 1.0f,
    			stroke = SolidColor(Color(0xFF000000)),
    			strokeAlpha = 1.0f,
    			strokeLineWidth = 2f,
    			strokeLineCap = StrokeCap.Round,
    			strokeLineJoin = StrokeJoin.Round,
    			strokeLineMiter = 1.0f,
    			pathFillType = PathFillType.NonZero
			) {
				moveTo(15.686f, 4.314f)
				arcTo(12.5f, 12.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 5.461f, 2.958f)
				arcTo(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 5.58f, 4.71f)
				arcToRelative(22f, 22f, 0f, isMoreThanHalf = false, isPositiveArc = true, 6.318f, 3.393f)
			}
			path(
    			fill = null,
    			fillAlpha = 1.0f,
    			stroke = SolidColor(Color(0xFF000000)),
    			strokeAlpha = 1.0f,
    			strokeLineWidth = 2f,
    			strokeLineCap = StrokeCap.Round,
    			strokeLineJoin = StrokeJoin.Round,
    			strokeLineMiter = 1.0f,
    			pathFillType = PathFillType.NonZero
			) {
				moveTo(17.7f, 3.7f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, -1.4f, 0f)
				lineToRelative(-4.6f, 4.6f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, 1.4f)
				lineToRelative(2.6f, 2.6f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1.4f, 0f)
				lineToRelative(4.6f, -4.6f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0f, -1.4f)
				close()
			}
			path(
    			fill = null,
    			fillAlpha = 1.0f,
    			stroke = SolidColor(Color(0xFF000000)),
    			strokeAlpha = 1.0f,
    			strokeLineWidth = 2f,
    			strokeLineCap = StrokeCap.Round,
    			strokeLineJoin = StrokeJoin.Round,
    			strokeLineMiter = 1.0f,
    			pathFillType = PathFillType.NonZero
			) {
				moveTo(19.686f, 8.314f)
				arcToRelative(12.501f, 12.501f, 0f, isMoreThanHalf = false, isPositiveArc = true, 1.356f, 10.225f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, -1.751f, -0.119f)
				arcToRelative(22f, 22f, 0f, isMoreThanHalf = false, isPositiveArc = false, -3.393f, -6.319f)
			}
		}.build()
		return _Pickaxe!!
	}

private var _Pickaxe: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy