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

commonMain.com.composables.icons.lucide.FolderPen.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.FolderPen: ImageVector
	get() {
		if (_FolderPen != null) {
			return _FolderPen!!
		}
		_FolderPen = ImageVector.Builder(
            name = "FolderPen",
            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(2f, 11.5f)
				verticalLineTo(5f)
				arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, -2f)
				horizontalLineToRelative(3.9f)
				curveToRelative(0.7f, 0f, 1.3f, 0.3f, 1.7f, 0.9f)
				lineToRelative(0.8f, 1.2f)
				curveToRelative(0.4f, 0.6f, 1f, 0.9f, 1.7f, 0.9f)
				horizontalLineTo(20f)
				arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, 2f)
				verticalLineToRelative(10f)
				arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, -2f, 2f)
				horizontalLineToRelative(-9.5f)
			}
			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(11.378f, 13.626f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = true, isPositiveArc = false, -3.004f, -3.004f)
				lineToRelative(-5.01f, 5.012f)
				arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, -0.506f, 0.854f)
				lineToRelative(-0.837f, 2.87f)
				arcToRelative(0.5f, 0.5f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0.62f, 0.62f)
				lineToRelative(2.87f, -0.837f)
				arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0.854f, -0.506f)
				close()
			}
		}.build()
		return _FolderPen!!
	}

private var _FolderPen: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy