commonMain.androidx.compose.material.icons.sharp.ElectricMeter.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.sharp
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.Sharp.ElectricMeter: ImageVector
get() {
if (_electricMeter != null) {
return _electricMeter!!
}
_electricMeter = materialIcon(name = "Sharp.ElectricMeter") {
materialPath {
moveTo(12.0f, 2.0f)
curveToRelative(-4.96f, 0.0f, -9.0f, 4.04f, -9.0f, 9.0f)
curveToRelative(0.0f, 3.91f, 2.51f, 7.24f, 6.0f, 8.47f)
verticalLineTo(22.0f)
horizontalLineToRelative(2.0f)
verticalLineToRelative(-2.06f)
curveToRelative(0.33f, 0.04f, 0.66f, 0.06f, 1.0f, 0.06f)
reflectiveCurveToRelative(0.67f, -0.02f, 1.0f, -0.06f)
verticalLineTo(22.0f)
horizontalLineToRelative(2.0f)
verticalLineToRelative(-2.53f)
curveToRelative(3.49f, -1.24f, 6.0f, -4.57f, 6.0f, -8.47f)
curveTo(21.0f, 6.04f, 16.96f, 2.0f, 12.0f, 2.0f)
close()
moveTo(14.25f, 14.0f)
lineToRelative(-3.0f, 3.0f)
lineToRelative(-1.5f, -1.5f)
lineTo(11.0f, 14.25f)
lineTo(9.75f, 13.0f)
lineToRelative(3.0f, -3.0f)
lineToRelative(1.5f, 1.5f)
lineTo(13.0f, 12.75f)
lineTo(14.25f, 14.0f)
close()
moveTo(16.0f, 9.0f)
horizontalLineTo(8.0f)
verticalLineTo(7.0f)
horizontalLineToRelative(8.0f)
verticalLineTo(9.0f)
close()
}
}
return _electricMeter!!
}
private var _electricMeter: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy