commonMain.androidx.compose.material.icons.rounded.AccountBalance.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of material-icons-extended-desktop Show documentation
Show all versions of material-icons-extended-desktop Show documentation
Compose Material Design extended icons. This module contains all Material icons. It is a very large dependency and should not be included directly.
The newest version!
/*
* 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.AccountBalance: ImageVector
get() {
if (_accountBalance != null) {
return _accountBalance!!
}
_accountBalance = materialIcon(name = "Rounded.AccountBalance") {
materialPath {
moveTo(4.0f, 11.5f)
verticalLineToRelative(4.0f)
curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f)
reflectiveCurveTo(7.0f, 16.33f, 7.0f, 15.5f)
verticalLineToRelative(-4.0f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
reflectiveCurveTo(4.0f, 10.67f, 4.0f, 11.5f)
close()
moveTo(10.0f, 11.5f)
verticalLineToRelative(4.0f)
curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f)
reflectiveCurveToRelative(1.5f, -0.67f, 1.5f, -1.5f)
verticalLineToRelative(-4.0f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
reflectiveCurveToRelative(-1.5f, 0.67f, -1.5f, 1.5f)
close()
moveTo(3.5f, 22.0f)
horizontalLineToRelative(16.0f)
curveToRelative(0.83f, 0.0f, 1.5f, -0.67f, 1.5f, -1.5f)
reflectiveCurveToRelative(-0.67f, -1.5f, -1.5f, -1.5f)
horizontalLineToRelative(-16.0f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
reflectiveCurveTo(2.67f, 22.0f, 3.5f, 22.0f)
close()
moveTo(16.0f, 11.5f)
verticalLineToRelative(4.0f)
curveToRelative(0.0f, 0.83f, 0.67f, 1.5f, 1.5f, 1.5f)
reflectiveCurveToRelative(1.5f, -0.67f, 1.5f, -1.5f)
verticalLineToRelative(-4.0f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
reflectiveCurveToRelative(-1.5f, 0.67f, -1.5f, 1.5f)
close()
moveTo(10.57f, 1.49f)
lineToRelative(-7.9f, 4.16f)
curveToRelative(-0.41f, 0.21f, -0.67f, 0.64f, -0.67f, 1.1f)
curveTo(2.0f, 7.44f, 2.56f, 8.0f, 3.25f, 8.0f)
horizontalLineToRelative(16.51f)
curveTo(20.44f, 8.0f, 21.0f, 7.44f, 21.0f, 6.75f)
curveToRelative(0.0f, -0.46f, -0.26f, -0.89f, -0.67f, -1.1f)
lineToRelative(-7.9f, -4.16f)
curveToRelative(-0.58f, -0.31f, -1.28f, -0.31f, -1.86f, 0.0f)
close()
}
}
return _accountBalance!!
}
private var _accountBalance: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy