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

commonMain.com.composables.icons.lucide.ChartPie.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.ChartPie: ImageVector
	get() {
		if (_ChartPie != null) {
			return _ChartPie!!
		}
		_ChartPie = ImageVector.Builder(
            name = "ChartPie",
            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(21f, 12f)
				curveToRelative(0.552f, 0f, 1.005f, -0.449f, 0.95f, -0.998f)
				arcToRelative(10f, 10f, 0f, isMoreThanHalf = false, isPositiveArc = false, -8.953f, -8.951f)
				curveToRelative(-0.55f, -0.055f, -0.998f, 0.398f, -0.998f, 0.95f)
				verticalLineToRelative(8f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = false, 1f, 1f)
				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(21.21f, 15.89f)
				arcTo(10f, 10f, 0f, isMoreThanHalf = true, isPositiveArc = true, 8f, 2.83f)
			}
		}.build()
		return _ChartPie!!
	}

private var _ChartPie: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy