commonMain.androidx.compose.material.icons.rounded.FolderSpecial.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.FolderSpecial: ImageVector
get() {
if (_folderSpecial != null) {
return _folderSpecial!!
}
_folderSpecial = materialIcon(name = "Rounded.FolderSpecial") {
materialPath {
moveTo(20.0f, 6.0f)
horizontalLineToRelative(-8.0f)
lineToRelative(-1.41f, -1.41f)
curveTo(10.21f, 4.21f, 9.7f, 4.0f, 9.17f, 4.0f)
lineTo(4.0f, 4.0f)
curveToRelative(-1.1f, 0.0f, -2.0f, 0.9f, -2.0f, 2.0f)
verticalLineToRelative(12.0f)
curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f)
horizontalLineToRelative(16.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
lineTo(22.0f, 8.0f)
curveToRelative(0.0f, -1.1f, -0.9f, -2.0f, -2.0f, -2.0f)
close()
moveTo(16.94f, 16.41f)
lineTo(15.0f, 15.28f)
lineToRelative(-1.94f, 1.13f)
curveToRelative(-0.38f, 0.22f, -0.84f, -0.12f, -0.74f, -0.55f)
lineToRelative(0.51f, -2.2f)
lineToRelative(-1.69f, -1.46f)
curveToRelative(-0.33f, -0.29f, -0.16f, -0.84f, 0.28f, -0.88f)
lineToRelative(2.23f, -0.19f)
lineToRelative(0.88f, -2.06f)
curveToRelative(0.17f, -0.4f, 0.75f, -0.4f, 0.92f, 0.0f)
lineToRelative(0.88f, 2.06f)
lineToRelative(2.23f, 0.19f)
curveToRelative(0.44f, 0.04f, 0.62f, 0.59f, 0.28f, 0.88f)
lineToRelative(-1.69f, 1.46f)
lineToRelative(0.51f, 2.2f)
curveToRelative(0.11f, 0.43f, -0.35f, 0.77f, -0.72f, 0.55f)
close()
}
}
return _folderSpecial!!
}
private var _folderSpecial: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy