commonMain.androidx.compose.material.icons.rounded.FindInPage.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.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.FindInPage: ImageVector
get() {
if (_findInPage != null) {
return _findInPage!!
}
_findInPage = materialIcon(name = "Rounded.FindInPage") {
materialPath {
moveTo(20.0f, 19.59f)
verticalLineTo(8.83f)
curveToRelative(0.0f, -0.53f, -0.21f, -1.04f, -0.59f, -1.41f)
lineToRelative(-4.83f, -4.83f)
curveToRelative(-0.37f, -0.38f, -0.88f, -0.59f, -1.41f, -0.59f)
horizontalLineTo(6.0f)
curveToRelative(-1.1f, 0.0f, -1.99f, 0.9f, -1.99f, 2.0f)
lineTo(4.0f, 20.0f)
curveToRelative(0.0f, 1.1f, 0.89f, 2.0f, 1.99f, 2.0f)
horizontalLineTo(18.0f)
curveToRelative(0.45f, 0.0f, 0.85f, -0.15f, 1.19f, -0.4f)
lineToRelative(-4.43f, -4.43f)
curveToRelative(-0.86f, 0.56f, -1.89f, 0.88f, -3.0f, 0.82f)
curveToRelative(-2.37f, -0.11f, -4.4f, -1.96f, -4.72f, -4.31f)
curveToRelative(-0.44f, -3.35f, 2.45f, -6.18f, 5.83f, -5.61f)
curveToRelative(1.95f, 0.33f, 3.57f, 1.85f, 4.0f, 3.78f)
curveToRelative(0.33f, 1.46f, 0.01f, 2.82f, -0.7f, 3.9f)
lineTo(20.0f, 19.59f)
close()
moveTo(9.0f, 13.0f)
curveToRelative(0.0f, 1.66f, 1.34f, 3.0f, 3.0f, 3.0f)
reflectiveCurveToRelative(3.0f, -1.34f, 3.0f, -3.0f)
reflectiveCurveToRelative(-1.34f, -3.0f, -3.0f, -3.0f)
reflectiveCurveToRelative(-3.0f, 1.34f, -3.0f, 3.0f)
close()
}
}
return _findInPage!!
}
private var _findInPage: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy