commonMain.androidx.compose.material.icons.rounded.Mediation.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.Mediation: ImageVector
get() {
if (_mediation != null) {
return _mediation!!
}
_mediation = materialIcon(name = "Rounded.Mediation") {
materialPath {
moveTo(18.0f, 13.0f)
horizontalLineToRelative(-5.06f)
curveToRelative(-0.34f, 3.1f, -2.26f, 5.72f, -4.94f, 7.05f)
curveToRelative(-0.03f, 1.81f, -1.66f, 3.23f, -3.55f, 2.9f)
curveToRelative(-1.2f, -0.21f, -2.19f, -1.2f, -2.4f, -2.4f)
curveTo(1.71f, 18.65f, 3.16f, 17.0f, 5.0f, 17.0f)
curveToRelative(0.95f, 0.0f, 1.78f, 0.45f, 2.33f, 1.14f)
curveToRelative(1.9f, -1.03f, 3.26f, -2.91f, 3.58f, -5.14f)
horizontalLineToRelative(-3.1f)
curveToRelative(-0.48f, 1.34f, -1.86f, 2.24f, -3.42f, 1.94f)
curveToRelative(-1.18f, -0.23f, -2.13f, -1.2f, -2.35f, -2.38f)
curveTo(1.7f, 10.66f, 3.16f, 9.0f, 5.0f, 9.0f)
curveToRelative(1.3f, 0.0f, 2.4f, 0.84f, 2.82f, 2.0f)
horizontalLineToRelative(3.1f)
curveTo(10.6f, 8.77f, 9.23f, 6.9f, 7.33f, 5.86f)
curveToRelative(-0.64f, 0.8f, -1.67f, 1.28f, -2.81f, 1.1f)
curveTo(3.29f, 6.77f, 2.26f, 5.77f, 2.05f, 4.54f)
curveTo(1.72f, 2.65f, 3.17f, 1.0f, 5.0f, 1.0f)
curveToRelative(1.64f, 0.0f, 2.96f, 1.31f, 2.99f, 2.95f)
curveToRelative(2.68f, 1.33f, 4.6f, 3.95f, 4.94f, 7.05f)
horizontalLineTo(18.0f)
verticalLineTo(9.21f)
curveToRelative(0.0f, -0.45f, 0.54f, -0.67f, 0.85f, -0.35f)
lineToRelative(2.79f, 2.79f)
curveToRelative(0.2f, 0.2f, 0.2f, 0.51f, 0.0f, 0.71f)
lineToRelative(-2.79f, 2.79f)
curveTo(18.54f, 15.46f, 18.0f, 15.24f, 18.0f, 14.79f)
verticalLineTo(13.0f)
close()
}
}
return _mediation!!
}
private var _mediation: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy