commonMain.androidx.compose.material.icons.rounded.TouchApp.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.TouchApp: ImageVector
get() {
if (_touchApp != null) {
return _touchApp!!
}
_touchApp = materialIcon(name = "Rounded.TouchApp") {
materialPath {
moveTo(8.79f, 9.24f)
verticalLineTo(5.5f)
curveToRelative(0.0f, -1.38f, 1.12f, -2.5f, 2.5f, -2.5f)
reflectiveCurveToRelative(2.5f, 1.12f, 2.5f, 2.5f)
verticalLineToRelative(3.74f)
curveToRelative(1.21f, -0.81f, 2.0f, -2.18f, 2.0f, -3.74f)
curveToRelative(0.0f, -2.49f, -2.01f, -4.5f, -4.5f, -4.5f)
reflectiveCurveToRelative(-4.5f, 2.01f, -4.5f, 4.5f)
curveTo(6.79f, 7.06f, 7.58f, 8.43f, 8.79f, 9.24f)
close()
moveTo(14.29f, 11.71f)
curveToRelative(-0.28f, -0.14f, -0.58f, -0.21f, -0.89f, -0.21f)
horizontalLineToRelative(-0.61f)
verticalLineToRelative(-6.0f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
reflectiveCurveToRelative(-1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(10.74f)
lineToRelative(-3.44f, -0.72f)
curveToRelative(-0.37f, -0.08f, -0.76f, 0.04f, -1.03f, 0.31f)
curveToRelative(-0.43f, 0.44f, -0.43f, 1.14f, 0.0f, 1.58f)
lineToRelative(4.01f, 4.01f)
curveTo(9.71f, 21.79f, 10.22f, 22.0f, 10.75f, 22.0f)
horizontalLineToRelative(6.1f)
curveToRelative(1.0f, 0.0f, 1.84f, -0.73f, 1.98f, -1.72f)
lineToRelative(0.63f, -4.47f)
curveToRelative(0.12f, -0.85f, -0.32f, -1.69f, -1.09f, -2.07f)
lineTo(14.29f, 11.71f)
close()
}
}
return _touchApp!!
}
private var _touchApp: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy