All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.androidx.compose.material.icons.rounded.Scale.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.Scale: ImageVector
    get() {
        if (_scale != null) {
            return _scale!!
        }
        _scale = materialIcon(name = "Rounded.Scale") {
            materialPath {
                moveTo(16.0f, 21.0f)
                curveToRelative(0.0f, 0.55f, 0.45f, 1.0f, 1.0f, 1.0f)
                lineToRelative(3.43f, 0.0f)
                curveToRelative(0.87f, 0.0f, 1.58f, -0.75f, 1.5f, -1.62f)
                curveTo(21.34f, 14.18f, 17.4f, 11.68f, 14.0f, 11.0f)
                verticalLineTo(8.0f)
                curveToRelative(3.31f, -0.42f, 6.03f, -1.86f, 7.27f, -3.73f)
                curveTo(21.92f, 3.3f, 21.15f, 2.0f, 19.98f, 2.0f)
                horizontalLineTo(4.02f)
                curveTo(2.85f, 2.0f, 2.08f, 3.3f, 2.73f, 4.27f)
                curveTo(3.97f, 6.14f, 6.69f, 7.58f, 10.0f, 8.0f)
                lineToRelative(0.0f, 3.0f)
                curveToRelative(-3.4f, 0.68f, -7.34f, 3.18f, -7.93f, 9.38f)
                curveTo(1.99f, 21.25f, 2.7f, 22.0f, 3.57f, 22.0f)
                lineTo(7.0f, 22.0f)
                curveToRelative(0.55f, 0.0f, 1.0f, -0.45f, 1.0f, -1.0f)
                curveToRelative(0.0f, -0.55f, -0.45f, -1.0f, -1.0f, -1.0f)
                horizontalLineTo(4.13f)
                curveToRelative(0.93f, -6.83f, 6.65f, -7.2f, 7.87f, -7.2f)
                reflectiveCurveToRelative(6.94f, 0.37f, 7.87f, 7.2f)
                horizontalLineTo(17.0f)
                curveTo(16.45f, 20.0f, 16.0f, 20.45f, 16.0f, 21.0f)
                close()
                moveTo(11.5f, 21.94f)
                curveToRelative(-0.7f, -0.17f, -1.27f, -0.74f, -1.44f, -1.44f)
                curveToRelative(-0.18f, -0.74f, 0.06f, -1.44f, 0.53f, -1.91f)
                curveToRelative(0.55f, -0.55f, 2.91f, -1.57f, 4.33f, -2.15f)
                curveToRelative(0.41f, -0.17f, 0.82f, 0.24f, 0.65f, 0.65f)
                curveToRelative(-0.58f, 1.42f, -1.6f, 3.78f, -2.15f, 4.33f)
                curveTo(12.95f, 21.88f, 12.25f, 22.12f, 11.5f, 21.94f)
                close()
            }
        }
        return _scale!!
    }

private var _scale: ImageVector? = null




© 2015 - 2025 Weber Informatics LLC | Privacy Policy