commonMain.androidx.compose.material.icons.rounded.Bolt.kt Maven / Gradle / Ivy
/*
* Copyright 2024 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.compose.material.icons.rounded
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.materialIcon
import androidx.compose.material.icons.materialPath
import androidx.compose.ui.graphics.vector.ImageVector
public val Icons.Rounded.Bolt: ImageVector
get() {
if (_bolt != null) {
return _bolt!!
}
_bolt = materialIcon(name = "Rounded.Bolt") {
materialPath {
moveTo(10.67f, 21.0f)
lineTo(10.67f, 21.0f)
curveToRelative(-0.35f, 0.0f, -0.62f, -0.31f, -0.57f, -0.66f)
lineTo(11.0f, 14.0f)
horizontalLineTo(7.5f)
curveToRelative(-0.88f, 0.0f, -0.33f, -0.75f, -0.31f, -0.78f)
curveToRelative(1.26f, -2.23f, 3.15f, -5.53f, 5.65f, -9.93f)
curveToRelative(0.1f, -0.18f, 0.3f, -0.29f, 0.5f, -0.29f)
horizontalLineToRelative(0.0f)
curveToRelative(0.35f, 0.0f, 0.62f, 0.31f, 0.57f, 0.66f)
lineTo(13.01f, 10.0f)
horizontalLineToRelative(3.51f)
curveToRelative(0.4f, 0.0f, 0.62f, 0.19f, 0.4f, 0.66f)
curveToRelative(-3.29f, 5.74f, -5.2f, 9.09f, -5.75f, 10.05f)
curveTo(11.07f, 20.89f, 10.88f, 21.0f, 10.67f, 21.0f)
close()
}
}
return _bolt!!
}
private var _bolt: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy