commonMain.androidx.compose.material.icons.filled.WifiOff.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
public val Icons.Filled.WifiOff: ImageVector
get() {
if (_wifiOff != null) {
return _wifiOff!!
}
_wifiOff = materialIcon(name = "Filled.WifiOff") {
materialPath {
moveTo(22.99f, 9.0f)
curveTo(19.15f, 5.16f, 13.8f, 3.76f, 8.84f, 4.78f)
lineToRelative(2.52f, 2.52f)
curveToRelative(3.47f, -0.17f, 6.99f, 1.05f, 9.63f, 3.7f)
lineToRelative(2.0f, -2.0f)
close()
moveTo(18.99f, 13.0f)
curveToRelative(-1.29f, -1.29f, -2.84f, -2.13f, -4.49f, -2.56f)
lineToRelative(3.53f, 3.53f)
lineToRelative(0.96f, -0.97f)
close()
moveTo(2.0f, 3.05f)
lineTo(5.07f, 6.1f)
curveTo(3.6f, 6.82f, 2.22f, 7.78f, 1.0f, 9.0f)
lineToRelative(1.99f, 2.0f)
curveToRelative(1.24f, -1.24f, 2.67f, -2.16f, 4.2f, -2.77f)
lineToRelative(2.24f, 2.24f)
curveTo(7.81f, 10.89f, 6.27f, 11.73f, 5.0f, 13.0f)
verticalLineToRelative(0.01f)
lineTo(6.99f, 15.0f)
curveToRelative(1.36f, -1.36f, 3.14f, -2.04f, 4.92f, -2.06f)
lineTo(18.98f, 20.0f)
lineToRelative(1.27f, -1.26f)
lineTo(3.29f, 1.79f)
lineTo(2.0f, 3.05f)
close()
moveTo(9.0f, 17.0f)
lineToRelative(3.0f, 3.0f)
lineToRelative(3.0f, -3.0f)
curveToRelative(-1.65f, -1.66f, -4.34f, -1.66f, -6.0f, 0.0f)
close()
}
}
return _wifiOff!!
}
private var _wifiOff: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy