commonMain.androidx.compose.material.icons.filled.Gavel.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.filled
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.Filled.Gavel: ImageVector
get() {
if (_gavel != null) {
return _gavel!!
}
_gavel = materialIcon(name = "Filled.Gavel") {
materialPath {
moveTo(5.25f, 8.069f)
lineToRelative(2.83f, -2.827f)
lineToRelative(14.134f, 14.15f)
lineToRelative(-2.83f, 2.827f)
close()
}
materialPath {
moveTo(9.486f, 3.827f)
lineToRelative(2.828f, -2.829f)
lineToRelative(5.658f, 5.656f)
lineToRelative(-2.828f, 2.829f)
close()
}
materialPath {
moveTo(0.999f, 12.315f)
lineToRelative(2.828f, -2.828f)
lineToRelative(5.657f, 5.657f)
lineToRelative(-2.828f, 2.828f)
close()
}
materialPath {
moveTo(1.0f, 21.0f)
horizontalLineToRelative(12.0f)
verticalLineToRelative(2.0f)
horizontalLineToRelative(-12.0f)
close()
}
}
return _gavel!!
}
private var _gavel: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy