commonMain.androidx.compose.material.icons.filled.TimerOff.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.TimerOff: ImageVector
get() {
if (_timerOff != null) {
return _timerOff!!
}
_timerOff = materialIcon(name = "Filled.TimerOff") {
materialPath {
moveTo(9.0f, 1.0f)
horizontalLineToRelative(6.0f)
verticalLineToRelative(2.0f)
horizontalLineToRelative(-6.0f)
close()
}
materialPath {
moveTo(13.0f, 8.0f)
verticalLineToRelative(2.17f)
lineToRelative(6.98f, 6.98f)
curveTo(20.63f, 15.91f, 21.0f, 14.5f, 21.0f, 13.0f)
curveToRelative(0.0f, -2.12f, -0.74f, -4.07f, -1.97f, -5.61f)
lineToRelative(1.42f, -1.42f)
curveToRelative(-0.43f, -0.51f, -0.9f, -0.99f, -1.41f, -1.41f)
lineToRelative(-1.42f, 1.42f)
curveTo(16.07f, 4.74f, 14.12f, 4.0f, 12.0f, 4.0f)
curveToRelative(-1.5f, 0.0f, -2.91f, 0.37f, -4.15f, 1.02f)
lineTo(10.83f, 8.0f)
horizontalLineTo(13.0f)
close()
}
materialPath {
moveTo(2.81f, 2.81f)
lineTo(1.39f, 4.22f)
lineToRelative(3.4f, 3.4f)
curveTo(3.67f, 9.12f, 3.0f, 10.98f, 3.0f, 13.0f)
curveToRelative(0.0f, 4.97f, 4.02f, 9.0f, 9.0f, 9.0f)
curveToRelative(2.02f, 0.0f, 3.88f, -0.67f, 5.38f, -1.79f)
lineToRelative(2.4f, 2.4f)
lineToRelative(1.41f, -1.41f)
lineTo(2.81f, 2.81f)
close()
}
}
return _timerOff!!
}
private var _timerOff: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy