commonMain.androidx.compose.material.icons.filled.HelpCenter.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.HelpCenter",
ReplaceWith( "Icons.AutoMirrored.Filled.HelpCenter",
"androidx.compose.material.icons.automirrored.filled.HelpCenter"),
)
public val Icons.Filled.HelpCenter: ImageVector
get() {
if (_helpCenter != null) {
return _helpCenter!!
}
_helpCenter = materialIcon(name = "Filled.HelpCenter") {
materialPath {
moveTo(19.0f, 3.0f)
horizontalLineTo(5.0f)
curveTo(3.9f, 3.0f, 3.0f, 3.9f, 3.0f, 5.0f)
verticalLineToRelative(14.0f)
curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f)
horizontalLineToRelative(14.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
verticalLineTo(5.0f)
curveTo(21.0f, 3.9f, 20.1f, 3.0f, 19.0f, 3.0f)
close()
moveTo(12.01f, 18.0f)
curveToRelative(-0.7f, 0.0f, -1.26f, -0.56f, -1.26f, -1.26f)
curveToRelative(0.0f, -0.71f, 0.56f, -1.25f, 1.26f, -1.25f)
curveToRelative(0.71f, 0.0f, 1.25f, 0.54f, 1.25f, 1.25f)
curveTo(13.25f, 17.43f, 12.72f, 18.0f, 12.01f, 18.0f)
close()
moveTo(15.02f, 10.6f)
curveToRelative(-0.76f, 1.11f, -1.48f, 1.46f, -1.87f, 2.17f)
curveToRelative(-0.16f, 0.29f, -0.22f, 0.48f, -0.22f, 1.41f)
horizontalLineToRelative(-1.82f)
curveToRelative(0.0f, -0.49f, -0.08f, -1.29f, 0.31f, -1.98f)
curveToRelative(0.49f, -0.87f, 1.42f, -1.39f, 1.96f, -2.16f)
curveToRelative(0.57f, -0.81f, 0.25f, -2.33f, -1.37f, -2.33f)
curveToRelative(-1.06f, 0.0f, -1.58f, 0.8f, -1.8f, 1.48f)
lineTo(8.56f, 8.49f)
curveTo(9.01f, 7.15f, 10.22f, 6.0f, 11.99f, 6.0f)
curveToRelative(1.48f, 0.0f, 2.49f, 0.67f, 3.01f, 1.52f)
curveTo(15.44f, 8.24f, 15.7f, 9.59f, 15.02f, 10.6f)
close()
}
}
return _helpCenter!!
}
private var _helpCenter: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy