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

commonMain.com.composables.icons.lucide.Rat.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.Rat: ImageVector
	get() {
		if (_Rat != null) {
			return _Rat!!
		}
		_Rat = ImageVector.Builder(
            name = "Rat",
            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(17f, 5f)
				curveToRelative(0f, -1.7f, -1.3f, -3f, -3f, -3f)
				reflectiveCurveToRelative(-3f, 1.3f, -3f, 3f)
				curveToRelative(0f, 0.8f, 0.3f, 1.5f, 0.8f, 2f)
				horizontalLineTo(11f)
				curveToRelative(-3.9f, 0f, -7f, 3.1f, -7f, 7f)
				curveToRelative(0f, 2.2f, 1.8f, 4f, 4f, 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(16.8f, 3.9f)
				curveToRelative(0.3f, -0.3f, 0.6f, -0.5f, 1f, -0.7f)
				curveToRelative(1.5f, -0.6f, 3.3f, 0.1f, 3.9f, 1.6f)
				curveToRelative(0.6f, 1.5f, -0.1f, 3.3f, -1.6f, 3.9f)
				lineToRelative(1.6f, 2.8f)
				curveToRelative(0.2f, 0.3f, 0.2f, 0.7f, 0.2f, 1f)
				curveToRelative(-0.2f, 0.8f, -0.9f, 1.2f, -1.7f, 1.1f)
				curveToRelative(0f, 0f, -1.6f, -0.3f, -2.7f, -0.6f)
				horizontalLineTo(17f)
				curveToRelative(-1.7f, 0f, -3f, 1.3f, -3f, 3f)
			}
			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(13.2f, 18f)
				arcToRelative(3f, 3f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2.2f, -5f)
			}
			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(13f, 22f)
				horizontalLineTo(4f)
				arcToRelative(2f, 2f, 0f, isMoreThanHalf = false, isPositiveArc = true, 0f, -4f)
				horizontalLineToRelative(12f)
			}
			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, 9f)
				horizontalLineToRelative(0.01f)
			}
		}.build()
		return _Rat!!
	}

private var _Rat: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy