commonMain.androidx.compose.material.icons.rounded.Token.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.Token: ImageVector
get() {
if (_token != null) {
return _token!!
}
_token = materialIcon(name = "Rounded.Token") {
materialPath {
moveTo(12.97f, 2.54f)
curveToRelative(-0.6f, -0.34f, -1.34f, -0.34f, -1.94f, 0.0f)
lineToRelative(-7.0f, 3.89f)
lineTo(9.1f, 9.24f)
curveTo(9.83f, 8.48f, 10.86f, 8.0f, 12.0f, 8.0f)
reflectiveCurveToRelative(2.17f, 0.48f, 2.9f, 1.24f)
lineToRelative(5.07f, -2.82f)
lineTo(12.97f, 2.54f)
close()
moveTo(10.0f, 12.0f)
curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f)
reflectiveCurveToRelative(2.0f, 0.9f, 2.0f, 2.0f)
reflectiveCurveToRelative(-0.9f, 2.0f, -2.0f, 2.0f)
reflectiveCurveTo(10.0f, 13.1f, 10.0f, 12.0f)
close()
moveTo(3.0f, 8.14f)
lineToRelative(5.13f, 2.85f)
curveTo(8.04f, 11.31f, 8.0f, 11.65f, 8.0f, 12.0f)
curveToRelative(0.0f, 1.86f, 1.27f, 3.43f, 3.0f, 3.87f)
verticalLineToRelative(5.57f)
lineToRelative(-6.97f, -3.87f)
curveTo(3.39f, 17.22f, 3.0f, 16.55f, 3.0f, 15.82f)
verticalLineTo(8.14f)
close()
moveTo(13.0f, 21.44f)
verticalLineToRelative(-5.57f)
curveToRelative(1.73f, -0.44f, 3.0f, -2.01f, 3.0f, -3.87f)
curveToRelative(0.0f, -0.35f, -0.04f, -0.69f, -0.13f, -1.01f)
lineTo(21.0f, 8.14f)
lineToRelative(0.0f, 7.68f)
curveToRelative(0.0f, 0.73f, -0.39f, 1.4f, -1.03f, 1.75f)
lineTo(13.0f, 21.44f)
close()
}
}
return _token!!
}
private var _token: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy