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

commonMain.com.composables.icons.lucide.Superscript.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.Superscript: ImageVector
	get() {
		if (_Superscript != null) {
			return _Superscript!!
		}
		_Superscript = ImageVector.Builder(
            name = "Superscript",
            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(4f, 19f)
				lineToRelative(8f, -8f)
			}
			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, 19f)
				lineToRelative(-8f, -8f)
			}
			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(20f, 12f)
				horizontalLineToRelative(-4f)
				curveToRelative(0f, -1.5f, 0.442f, -2f, 1.5f, -2.5f)
				reflectiveCurveTo(20f, 8.334f, 20f, 7.002f)
				curveToRelative(0f, -0.472f, -0.17f, -0.93f, -0.484f, -1.29f)
				arcToRelative(2.105f, 2.105f, 0f, isMoreThanHalf = false, isPositiveArc = false, -2.617f, -0.436f)
				curveToRelative(-0.42f, 0.239f, -0.738f, 0.614f, -0.899f, 1.06f)
			}
		}.build()
		return _Superscript!!
	}

private var _Superscript: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy