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

commonMain.androidx.compose.material.icons.twotone.Flaky.kt Maven / Gradle / Ivy

Go to download

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.twotone

import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.materialIcon
import androidx.compose.material.icons.materialPath
import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd
import androidx.compose.ui.graphics.vector.ImageVector

public val Icons.TwoTone.Flaky: ImageVector
    get() {
        if (_flaky != null) {
            return _flaky!!
        }
        _flaky = materialIcon(name = "TwoTone.Flaky") {
            materialPath(pathFillType = EvenOdd) {
                moveTo(14.05f, 17.58f)
                lineToRelative(-0.01f, 0.01f)
                lineToRelative(-2.4f, -2.4f)
                lineToRelative(1.06f, -1.06f)
                lineToRelative(1.35f, 1.35f)
                lineTo(16.54f, 13.0f)
                lineToRelative(1.06f, 1.06f)
                lineToRelative(-3.54f, 3.54f)
                lineTo(14.05f, 17.58f)
                close()
                moveTo(12.0f, 2.0f)
                curveTo(6.5f, 2.0f, 2.0f, 6.5f, 2.0f, 12.0f)
                reflectiveCurveToRelative(4.5f, 10.0f, 10.0f, 10.0f)
                reflectiveCurveToRelative(10.0f, -4.5f, 10.0f, -10.0f)
                reflectiveCurveTo(17.5f, 2.0f, 12.0f, 2.0f)
                close()
                moveTo(7.34f, 6.28f)
                lineToRelative(1.41f, 1.41f)
                lineToRelative(1.41f, -1.41f)
                lineToRelative(1.06f, 1.06f)
                lineTo(9.81f, 8.75f)
                lineToRelative(1.41f, 1.41f)
                lineToRelative(-1.06f, 1.06f)
                lineTo(8.75f, 9.81f)
                lineToRelative(-1.41f, 1.41f)
                lineToRelative(-1.06f, -1.06f)
                lineToRelative(1.41f, -1.41f)
                lineTo(6.28f, 7.34f)
                lineTo(7.34f, 6.28f)
                close()
                moveTo(12.0f, 20.0f)
                curveToRelative(-2.2f, 0.0f, -4.2f, -0.9f, -5.7f, -2.3f)
                lineTo(17.7f, 6.3f)
                curveTo(19.1f, 7.8f, 20.0f, 9.8f, 20.0f, 12.0f)
                curveTo(20.0f, 16.4f, 16.4f, 20.0f, 12.0f, 20.0f)
                close()
            }
        }
        return _flaky!!
    }

private var _flaky: ImageVector? = null




© 2015 - 2025 Weber Informatics LLC | Privacy Policy