commonMain.androidx.compose.material.icons.filled.PanTool.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.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.PanTool: ImageVector
get() {
if (_panTool != null) {
return _panTool!!
}
_panTool = materialIcon(name = "Filled.PanTool") {
materialPath {
moveTo(23.0f, 5.5f)
verticalLineTo(20.0f)
curveToRelative(0.0f, 2.2f, -1.8f, 4.0f, -4.0f, 4.0f)
horizontalLineToRelative(-7.3f)
curveToRelative(-1.08f, 0.0f, -2.1f, -0.43f, -2.85f, -1.19f)
lineTo(1.0f, 14.83f)
curveToRelative(0.0f, 0.0f, 1.26f, -1.23f, 1.3f, -1.25f)
curveToRelative(0.22f, -0.19f, 0.49f, -0.29f, 0.79f, -0.29f)
curveToRelative(0.22f, 0.0f, 0.42f, 0.06f, 0.6f, 0.16f)
curveTo(3.73f, 13.46f, 8.0f, 15.91f, 8.0f, 15.91f)
verticalLineTo(4.0f)
curveToRelative(0.0f, -0.83f, 0.67f, -1.5f, 1.5f, -1.5f)
reflectiveCurveTo(11.0f, 3.17f, 11.0f, 4.0f)
verticalLineToRelative(7.0f)
horizontalLineToRelative(1.0f)
verticalLineTo(1.5f)
curveTo(12.0f, 0.67f, 12.67f, 0.0f, 13.5f, 0.0f)
reflectiveCurveTo(15.0f, 0.67f, 15.0f, 1.5f)
verticalLineTo(11.0f)
horizontalLineToRelative(1.0f)
verticalLineTo(2.5f)
curveTo(16.0f, 1.67f, 16.67f, 1.0f, 17.5f, 1.0f)
reflectiveCurveTo(19.0f, 1.67f, 19.0f, 2.5f)
verticalLineTo(11.0f)
horizontalLineToRelative(1.0f)
verticalLineTo(5.5f)
curveTo(20.0f, 4.67f, 20.67f, 4.0f, 21.5f, 4.0f)
reflectiveCurveTo(23.0f, 4.67f, 23.0f, 5.5f)
close()
}
}
return _panTool!!
}
private var _panTool: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy