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

commonMain.com.composables.icons.lucide.BookHeart.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.BookHeart: ImageVector
	get() {
		if (_BookHeart != null) {
			return _BookHeart!!
		}
		_BookHeart = ImageVector.Builder(
            name = "BookHeart",
            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(16f, 8.2f)
				arcTo(2.22f, 2.22f, 0f, isMoreThanHalf = false, isPositiveArc = false, 13.8f, 6f)
				curveToRelative(-0.8f, 0f, -1.4f, 0.3f, -1.8f, 0.9f)
				curveToRelative(-0.4f, -0.6f, -1f, -0.9f, -1.8f, -0.9f)
				arcTo(2.22f, 2.22f, 0f, isMoreThanHalf = false, isPositiveArc = false, 8f, 8.2f)
				curveToRelative(0f, 0.6f, 0.3f, 1.2f, 0.7f, 1.6f)
				arcTo(226.652f, 226.652f, 0f, isMoreThanHalf = false, isPositiveArc = false, 12f, 13f)
				arcToRelative(404f, 404f, 0f, isMoreThanHalf = false, isPositiveArc = false, 3.3f, -3.1f)
				arcToRelative(2.413f, 2.413f, 0f, isMoreThanHalf = false, isPositiveArc = false, 0.7f, -1.7f)
			}
			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(4f, 19.5f)
				verticalLineToRelative(-15f)
				arcTo(2.5f, 2.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 6.5f, 2f)
				horizontalLineTo(19f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 1f, 1f)
				verticalLineToRelative(18f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, -1f, 1f)
				horizontalLineTo(6.5f)
				arcToRelative(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 0f, -5f)
				horizontalLineTo(20f)
			}
		}.build()
		return _BookHeart!!
	}

private var _BookHeart: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy