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 Bolt: ImageVector
get() {
if (_Bolt != null) {
return _Bolt!!
}
_Bolt = ImageVector.Builder(
name = "Bolt",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 24f,
viewportHeight = 24f
).apply {
path(
fill = null,
fillAlpha = 1.0f,
stroke = SolidColor(Color(0xFF0F172A)),
strokeAlpha = 1.0f,
strokeLineWidth = 1.5f,
strokeLineCap = StrokeCap.Round,
strokeLineJoin = StrokeJoin.Round,
strokeLineMiter = 1.0f,
pathFillType = PathFillType.NonZero
) {
moveTo(3.75f, 13.5f)
lineTo(14.25f, 2.25f)
lineTo(12f, 10.5f)
horizontalLineTo(20.25f)
lineTo(9.75f, 21.75f)
lineTo(12f, 13.5f)
horizontalLineTo(3.75f)
close()
}
}.build()
return _Bolt!!
}
private var _Bolt: ImageVector? = null