commonMain.androidx.compose.material.icons.filled.MultilineChart.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.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
import kotlin.Deprecated
@Deprecated(
"Use the AutoMirrored version at Icons.AutoMirrored.Filled.MultilineChart",
ReplaceWith( "Icons.AutoMirrored.Filled.MultilineChart",
"androidx.compose.material.icons.automirrored.filled.MultilineChart"),
)
public val Icons.Filled.MultilineChart: ImageVector
get() {
if (_multilineChart != null) {
return _multilineChart!!
}
_multilineChart = materialIcon(name = "Filled.MultilineChart") {
materialPath {
moveTo(22.0f, 6.92f)
lineToRelative(-1.41f, -1.41f)
lineToRelative(-2.85f, 3.21f)
curveTo(15.68f, 6.4f, 12.83f, 5.0f, 9.61f, 5.0f)
curveTo(6.72f, 5.0f, 4.07f, 6.16f, 2.0f, 8.0f)
lineToRelative(1.42f, 1.42f)
curveTo(5.12f, 7.93f, 7.27f, 7.0f, 9.61f, 7.0f)
curveToRelative(2.74f, 0.0f, 5.09f, 1.26f, 6.77f, 3.24f)
lineToRelative(-2.88f, 3.24f)
lineToRelative(-4.0f, -4.0f)
lineTo(2.0f, 16.99f)
lineToRelative(1.5f, 1.5f)
lineToRelative(6.0f, -6.01f)
lineToRelative(4.0f, 4.0f)
lineToRelative(4.05f, -4.55f)
curveToRelative(0.75f, 1.35f, 1.25f, 2.9f, 1.44f, 4.55f)
horizontalLineTo(21.0f)
curveToRelative(-0.22f, -2.3f, -0.95f, -4.39f, -2.04f, -6.14f)
lineTo(22.0f, 6.92f)
close()
}
}
return _multilineChart!!
}
private var _multilineChart: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy