commonMain.androidx.compose.material.icons.sharp.Umbrella.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.sharp
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.Sharp.Umbrella: ImageVector
get() {
if (_umbrella != null) {
return _umbrella!!
}
_umbrella = materialIcon(name = "Sharp.Umbrella") {
materialPath {
moveTo(14.5f, 6.92f)
lineTo(13.0f, 5.77f)
verticalLineTo(3.88f)
verticalLineTo(3.4f)
curveToRelative(0.0f, -0.26f, 0.22f, -0.48f, 0.5f, -0.48f)
curveToRelative(0.28f, 0.0f, 0.5f, 0.21f, 0.5f, 0.48f)
verticalLineTo(4.0f)
horizontalLineToRelative(2.0f)
verticalLineTo(3.4f)
curveTo(16.0f, 2.07f, 14.88f, 1.0f, 13.5f, 1.0f)
curveTo(12.12f, 1.0f, 11.0f, 2.07f, 11.0f, 3.4f)
verticalLineToRelative(0.48f)
verticalLineToRelative(1.89f)
lineTo(9.5f, 6.92f)
lineTo(6.0f, 6.07f)
lineToRelative(5.05f, 15.25f)
curveTo(11.2f, 21.77f, 11.6f, 22.0f, 12.0f, 22.0f)
reflectiveCurveToRelative(0.8f, -0.23f, 0.95f, -0.69f)
lineTo(18.0f, 6.07f)
lineTo(14.5f, 6.92f)
close()
moveTo(13.28f, 8.5f)
lineToRelative(0.76f, 0.58f)
lineToRelative(0.92f, -0.23f)
lineTo(13.0f, 14.8f)
verticalLineTo(8.29f)
lineTo(13.28f, 8.5f)
close()
moveTo(9.96f, 9.09f)
lineToRelative(0.76f, -0.58f)
lineTo(11.0f, 8.29f)
verticalLineToRelative(6.51f)
lineTo(9.03f, 8.86f)
lineTo(9.96f, 9.09f)
close()
}
}
return _umbrella!!
}
private var _umbrella: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy