commonMain.androidx.compose.material.icons.rounded.CallEnd.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.CallEnd: ImageVector
get() {
if (_callEnd != null) {
return _callEnd!!
}
_callEnd = materialIcon(name = "Rounded.CallEnd") {
materialPath {
moveTo(4.51f, 15.48f)
lineToRelative(2.0f, -1.59f)
curveToRelative(0.48f, -0.38f, 0.76f, -0.96f, 0.76f, -1.57f)
verticalLineToRelative(-2.6f)
curveToRelative(3.02f, -0.98f, 6.29f, -0.99f, 9.32f, 0.0f)
verticalLineToRelative(2.61f)
curveToRelative(0.0f, 0.61f, 0.28f, 1.19f, 0.76f, 1.57f)
lineToRelative(1.99f, 1.58f)
curveToRelative(0.8f, 0.63f, 1.94f, 0.57f, 2.66f, -0.15f)
lineToRelative(1.22f, -1.22f)
curveToRelative(0.8f, -0.8f, 0.8f, -2.13f, -0.05f, -2.88f)
curveToRelative(-6.41f, -5.66f, -16.07f, -5.66f, -22.48f, 0.0f)
curveToRelative(-0.85f, 0.75f, -0.85f, 2.08f, -0.05f, 2.88f)
lineToRelative(1.22f, 1.22f)
curveToRelative(0.71f, 0.72f, 1.85f, 0.78f, 2.65f, 0.15f)
close()
}
}
return _callEnd!!
}
private var _callEnd: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy