commonMain.androidx.compose.material.icons.filled.ImageSearch.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.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.ImageSearch: ImageVector
get() {
if (_imageSearch != null) {
return _imageSearch!!
}
_imageSearch = materialIcon(name = "Filled.ImageSearch") {
materialPath {
moveTo(18.0f, 13.0f)
verticalLineToRelative(7.0f)
lineTo(4.0f, 20.0f)
lineTo(4.0f, 6.0f)
horizontalLineToRelative(5.02f)
curveToRelative(0.05f, -0.71f, 0.22f, -1.38f, 0.48f, -2.0f)
lineTo(4.0f, 4.0f)
curveToRelative(-1.1f, 0.0f, -2.0f, 0.9f, -2.0f, 2.0f)
verticalLineToRelative(14.0f)
curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f)
horizontalLineToRelative(14.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
verticalLineToRelative(-5.0f)
lineToRelative(-2.0f, -2.0f)
close()
moveTo(16.5f, 18.0f)
horizontalLineToRelative(-11.0f)
lineToRelative(2.75f, -3.53f)
lineToRelative(1.96f, 2.36f)
lineToRelative(2.75f, -3.54f)
close()
moveTo(19.3f, 8.89f)
curveToRelative(0.44f, -0.7f, 0.7f, -1.51f, 0.7f, -2.39f)
curveTo(20.0f, 4.01f, 17.99f, 2.0f, 15.5f, 2.0f)
reflectiveCurveTo(11.0f, 4.01f, 11.0f, 6.5f)
reflectiveCurveToRelative(2.01f, 4.5f, 4.49f, 4.5f)
curveToRelative(0.88f, 0.0f, 1.7f, -0.26f, 2.39f, -0.7f)
lineTo(21.0f, 13.42f)
lineTo(22.42f, 12.0f)
lineTo(19.3f, 8.89f)
close()
moveTo(15.5f, 9.0f)
curveTo(14.12f, 9.0f, 13.0f, 7.88f, 13.0f, 6.5f)
reflectiveCurveTo(14.12f, 4.0f, 15.5f, 4.0f)
reflectiveCurveTo(18.0f, 5.12f, 18.0f, 6.5f)
reflectiveCurveTo(16.88f, 9.0f, 15.5f, 9.0f)
close()
}
}
return _imageSearch!!
}
private var _imageSearch: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy