commonMain.androidx.compose.material.icons.rounded.PhonePaused.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.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.PhonePaused: ImageVector
get() {
if (_phonePaused != null) {
return _phonePaused!!
}
_phonePaused = materialIcon(name = "Rounded.PhonePaused") {
materialPath {
moveTo(16.0f, 3.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, 0.45f, -1.0f, 1.0f)
verticalLineToRelative(5.0f)
curveToRelative(0.0f, 0.55f, 0.45f, 1.0f, 1.0f, 1.0f)
reflectiveCurveToRelative(1.0f, -0.45f, 1.0f, -1.0f)
lineTo(17.0f, 4.0f)
curveToRelative(0.0f, -0.55f, -0.45f, -1.0f, -1.0f, -1.0f)
close()
moveTo(19.0f, 4.0f)
verticalLineToRelative(5.0f)
curveToRelative(0.0f, 0.55f, 0.45f, 1.0f, 1.0f, 1.0f)
reflectiveCurveToRelative(1.0f, -0.45f, 1.0f, -1.0f)
lineTo(21.0f, 4.0f)
curveToRelative(0.0f, -0.55f, -0.45f, -1.0f, -1.0f, -1.0f)
reflectiveCurveToRelative(-1.0f, 0.45f, -1.0f, 1.0f)
close()
moveTo(19.23f, 15.26f)
lineToRelative(-2.54f, -0.29f)
curveToRelative(-0.61f, -0.07f, -1.21f, 0.14f, -1.64f, 0.57f)
lineToRelative(-1.84f, 1.84f)
curveToRelative(-2.83f, -1.44f, -5.15f, -3.75f, -6.59f, -6.59f)
lineToRelative(1.85f, -1.85f)
curveToRelative(0.43f, -0.43f, 0.64f, -1.03f, 0.57f, -1.64f)
lineToRelative(-0.29f, -2.52f)
curveToRelative(-0.12f, -1.01f, -0.97f, -1.77f, -1.99f, -1.77f)
lineTo(5.03f, 3.01f)
curveToRelative(-1.13f, 0.0f, -2.07f, 0.94f, -2.0f, 2.07f)
curveToRelative(0.53f, 8.54f, 7.36f, 15.36f, 15.89f, 15.89f)
curveToRelative(1.13f, 0.07f, 2.07f, -0.87f, 2.07f, -2.0f)
verticalLineToRelative(-1.73f)
curveToRelative(0.01f, -1.01f, -0.75f, -1.86f, -1.76f, -1.98f)
close()
}
}
return _phonePaused!!
}
private var _phonePaused: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy