Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
commonMain.com.composables.icons.lucide.Radiation.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.Radiation: ImageVector
get() {
if (_Radiation != null) {
return _Radiation!!
}
_Radiation = ImageVector.Builder(
name = "Radiation",
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(12f, 12f)
horizontalLineToRelative(0.01f)
}
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(7.5f, 4.2f)
curveToRelative(-0.3f, -0.5f, -0.9f, -0.7f, -1.3f, -0.4f)
curveTo(3.9f, 5.5f, 2.3f, 8.1f, 2f, 11f)
curveToRelative(-0.1f, 0.5f, 0.4f, 1f, 1f, 1f)
horizontalLineToRelative(5f)
curveToRelative(0f, -1.5f, 0.8f, -2.8f, 2f, -3.4f)
curveToRelative(-1.1f, -1.9f, -2f, -3.5f, -2.5f, -4.4f)
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(21f, 12f)
curveToRelative(0.6f, 0f, 1f, -0.4f, 1f, -1f)
curveToRelative(-0.3f, -2.9f, -1.8f, -5.5f, -4.1f, -7.1f)
curveToRelative(-0.4f, -0.3f, -1.1f, -0.2f, -1.3f, 0.3f)
curveToRelative(-0.6f, 0.9f, -1.5f, 2.5f, -2.6f, 4.3f)
curveToRelative(1.2f, 0.7f, 2f, 2f, 2f, 3.5f)
horizontalLineToRelative(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(7.5f, 19.8f)
curveToRelative(-0.3f, 0.5f, -0.1f, 1.1f, 0.4f, 1.3f)
curveToRelative(2.6f, 1.2f, 5.6f, 1.2f, 8.2f, 0f)
curveToRelative(0.5f, -0.2f, 0.7f, -0.8f, 0.4f, -1.3f)
curveToRelative(-0.5f, -0.9f, -1.4f, -2.5f, -2.5f, -4.3f)
curveToRelative(-1.2f, 0.7f, -2.8f, 0.7f, -4f, 0f)
curveToRelative(-1.1f, 1.8f, -2f, 3.4f, -2.5f, 4.3f)
close()
}
}.build()
return _Radiation!!
}
private var _Radiation: ImageVector? = null