commonMain.androidx.compose.material.icons.rounded.MusicOff.kt Maven / Gradle / Ivy
/*
* 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.rounded
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.Rounded.MusicOff: ImageVector
get() {
if (_musicOff != null) {
return _musicOff!!
}
_musicOff = materialIcon(name = "Rounded.MusicOff") {
materialPath {
moveTo(14.0f, 9.61f)
verticalLineTo(7.0f)
horizontalLineToRelative(2.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
reflectiveCurveToRelative(-0.9f, -2.0f, -2.0f, -2.0f)
horizontalLineToRelative(-3.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, 0.45f, -1.0f, 1.0f)
verticalLineToRelative(3.61f)
lineToRelative(2.0f, 2.0f)
close()
moveTo(5.12f, 3.56f)
curveToRelative(-0.39f, -0.39f, -1.02f, -0.39f, -1.41f, 0.0f)
curveToRelative(-0.39f, 0.39f, -0.39f, 1.02f, 0.0f, 1.41f)
lineToRelative(8.29f, 8.3f)
verticalLineToRelative(0.28f)
curveToRelative(-0.94f, -0.54f, -2.1f, -0.75f, -3.33f, -0.32f)
curveToRelative(-1.34f, 0.48f, -2.37f, 1.67f, -2.61f, 3.07f)
curveToRelative(-0.46f, 2.74f, 1.86f, 5.08f, 4.59f, 4.65f)
curveToRelative(1.96f, -0.31f, 3.35f, -2.11f, 3.35f, -4.1f)
verticalLineToRelative(-1.58f)
lineToRelative(5.02f, 5.02f)
curveToRelative(0.39f, 0.39f, 1.02f, 0.39f, 1.41f, 0.0f)
curveToRelative(0.39f, -0.39f, 0.39f, -1.02f, 0.0f, -1.41f)
lineTo(5.12f, 3.56f)
close()
}
}
return _musicOff!!
}
private var _musicOff: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy