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

commonMain.com.composables.icons.lucide.Waves.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.Waves: ImageVector
	get() {
		if (_Waves != null) {
			return _Waves!!
		}
		_Waves = ImageVector.Builder(
            name = "Waves",
            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, 6f)
				curveToRelative(0.6f, 0.5f, 1.2f, 1f, 2.5f, 1f)
				curveTo(7f, 7f, 7f, 5f, 9.5f, 5f)
				curveToRelative(2.6f, 0f, 2.4f, 2f, 5f, 2f)
				curveToRelative(2.5f, 0f, 2.5f, -2f, 5f, -2f)
				curveToRelative(1.3f, 0f, 1.9f, 0.5f, 2.5f, 1f)
			}
			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, 12f)
				curveToRelative(0.6f, 0.5f, 1.2f, 1f, 2.5f, 1f)
				curveToRelative(2.5f, 0f, 2.5f, -2f, 5f, -2f)
				curveToRelative(2.6f, 0f, 2.4f, 2f, 5f, 2f)
				curveToRelative(2.5f, 0f, 2.5f, -2f, 5f, -2f)
				curveToRelative(1.3f, 0f, 1.9f, 0.5f, 2.5f, 1f)
			}
			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, 18f)
				curveToRelative(0.6f, 0.5f, 1.2f, 1f, 2.5f, 1f)
				curveToRelative(2.5f, 0f, 2.5f, -2f, 5f, -2f)
				curveToRelative(2.6f, 0f, 2.4f, 2f, 5f, 2f)
				curveToRelative(2.5f, 0f, 2.5f, -2f, 5f, -2f)
				curveToRelative(1.3f, 0f, 1.9f, 0.5f, 2.5f, 1f)
			}
		}.build()
		return _Waves!!
	}

private var _Waves: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy