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

commonMain.com.composables.icons.lucide.Bike.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.Bike: ImageVector
	get() {
		if (_Bike != null) {
			return _Bike!!
		}
		_Bike = ImageVector.Builder(
            name = "Bike",
            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(22f, 17.5f)
				arcTo(3.5f, 3.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 18.5f, 21f)
				arcTo(3.5f, 3.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 15f, 17.5f)
				arcTo(3.5f, 3.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 22f, 17.5f)
				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(9f, 17.5f)
				arcTo(3.5f, 3.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 5.5f, 21f)
				arcTo(3.5f, 3.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 2f, 17.5f)
				arcTo(3.5f, 3.5f, 0f, isMoreThanHalf = false, isPositiveArc = true, 9f, 17.5f)
				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(16f, 5f)
				arcTo(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 15f, 6f)
				arcTo(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 14f, 5f)
				arcTo(1f, 1f, 0f, isMoreThanHalf = false, isPositiveArc = true, 16f, 5f)
				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(12f, 17.5f)
				verticalLineTo(14f)
				lineToRelative(-3f, -3f)
				lineToRelative(4f, -3f)
				lineToRelative(2f, 3f)
				horizontalLineToRelative(2f)
			}
		}.build()
		return _Bike!!
	}

private var _Bike: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy