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

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

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.Croissant: ImageVector
	get() {
		if (_Croissant != null) {
			return _Croissant!!
		}
		_Croissant = ImageVector.Builder(
            name = "Croissant",
            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(4.6f, 13.11f)
				lineToRelative(5.79f, -3.21f)
				curveToRelative(1.89f, -1.05f, 4.79f, 1.78f, 3.71f, 3.71f)
				lineToRelative(-3.22f, 5.81f)
				curveTo(8.8f, 23.16f, 0.79f, 15.23f, 4.6f, 13.11f)
				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(10.5f, 9.5f)
				lineToRelative(-1f, -2.29f)
				curveTo(9.2f, 6.48f, 8.8f, 6f, 8f, 6f)
				horizontalLineTo(4.5f)
				curveTo(2.79f, 6f, 2f, 6.5f, 2f, 8.5f)
				arcToRelative(7.71f, 7.71f, 0f, isMoreThanHalf = false, isPositiveArc = false, 2f, 4.83f)
			}
			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(8f, 6f)
				curveToRelative(0f, -1.55f, 0.24f, -4f, -2f, -4f)
				curveToRelative(-2f, 0f, -2.5f, 2.17f, -2.5f, 4f)
			}
			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.5f, 13.5f)
				lineToRelative(2.29f, 1f)
				curveToRelative(0.73f, 0.3f, 1.21f, 0.7f, 1.21f, 1.5f)
				verticalLineToRelative(3.5f)
				curveToRelative(0f, 1.71f, -0.5f, 2.5f, -2.5f, 2.5f)
				arcToRelative(7.71f, 7.71f, 0f, isMoreThanHalf = false, isPositiveArc = true, -4.83f, -2f)
			}
			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(18f, 16f)
				curveToRelative(1.55f, 0f, 4f, -0.24f, 4f, 2f)
				curveToRelative(0f, 2f, -2.17f, 2.5f, -4f, 2.5f)
			}
		}.build()
		return _Croissant!!
	}

private var _Croissant: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy