commonMain.androidx.compose.material.icons.outlined.LabelOff.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.outlined
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.Outlined.LabelOff",
ReplaceWith( "Icons.AutoMirrored.Outlined.LabelOff",
"androidx.compose.material.icons.automirrored.outlined.LabelOff"),
)
public val Icons.Outlined.LabelOff: ImageVector
get() {
if (_labelOff != null) {
return _labelOff!!
}
_labelOff = materialIcon(name = "Outlined.LabelOff") {
materialPath {
moveTo(16.0f, 7.0f)
lineToRelative(3.55f, 5.0f)
lineToRelative(-1.63f, 2.29f)
lineToRelative(1.43f, 1.43f)
lineTo(22.0f, 12.0f)
lineToRelative(-4.37f, -6.16f)
curveTo(17.27f, 5.33f, 16.67f, 5.0f, 16.0f, 5.0f)
lineToRelative(-7.37f, 0.01f)
lineToRelative(2.0f, 1.99f)
horizontalLineTo(16.0f)
close()
moveTo(2.0f, 4.03f)
lineToRelative(1.58f, 1.58f)
curveTo(3.22f, 5.96f, 3.0f, 6.46f, 3.0f, 7.0f)
verticalLineToRelative(10.0f)
curveToRelative(0.0f, 1.1f, 0.9f, 1.99f, 2.0f, 1.99f)
lineTo(16.0f, 19.0f)
curveToRelative(0.28f, 0.0f, 0.55f, -0.07f, 0.79f, -0.18f)
lineTo(18.97f, 21.0f)
lineToRelative(1.41f, -1.41f)
lineTo(3.41f, 2.62f)
lineTo(2.0f, 4.03f)
close()
moveTo(14.97f, 17.0f)
horizontalLineTo(5.0f)
verticalLineTo(7.03f)
lineTo(14.97f, 17.0f)
close()
}
}
return _labelOff!!
}
private var _labelOff: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy