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

commonMain.androidx.compose.material.icons.rounded.Attachment.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.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.Attachment: ImageVector
    get() {
        if (_attachment != null) {
            return _attachment!!
        }
        _attachment = materialIcon(name = "Rounded.Attachment") {
            materialPath {
                moveTo(17.75f, 16.0f)
                horizontalLineTo(7.17f)
                curveToRelative(-2.09f, 0.0f, -3.95f, -1.53f, -4.15f, -3.61f)
                curveTo(2.79f, 10.01f, 4.66f, 8.0f, 7.0f, 8.0f)
                horizontalLineToRelative(12.36f)
                curveToRelative(1.31f, 0.0f, 2.5f, 0.94f, 2.63f, 2.24f)
                curveToRelative(0.15f, 1.5f, -1.02f, 2.76f, -2.49f, 2.76f)
                horizontalLineTo(9.0f)
                curveToRelative(-0.55f, 0.0f, -1.0f, -0.45f, -1.0f, -1.0f)
                reflectiveCurveToRelative(0.45f, -1.0f, 1.0f, -1.0f)
                horizontalLineToRelative(8.75f)
                curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f)
                reflectiveCurveToRelative(-0.34f, -0.75f, -0.75f, -0.75f)
                horizontalLineTo(9.14f)
                curveToRelative(-1.31f, 0.0f, -2.5f, 0.94f, -2.63f, 2.24f)
                curveToRelative(-0.15f, 1.5f, 1.02f, 2.76f, 2.49f, 2.76f)
                horizontalLineToRelative(10.33f)
                curveToRelative(2.09f, 0.0f, 3.95f, -1.53f, 4.15f, -3.61f)
                curveToRelative(0.23f, -2.39f, -1.64f, -4.39f, -3.98f, -4.39f)
                horizontalLineTo(7.23f)
                curveToRelative(-2.87f, 0.0f, -5.44f, 2.1f, -5.71f, 4.96f)
                curveToRelative(-0.3f, 3.29f, 2.26f, 6.04f, 5.48f, 6.04f)
                horizontalLineToRelative(10.75f)
                curveToRelative(0.41f, 0.0f, 0.75f, -0.34f, 0.75f, -0.75f)
                reflectiveCurveToRelative(-0.34f, -0.75f, -0.75f, -0.75f)
                close()
            }
        }
        return _attachment!!
    }

private var _attachment: ImageVector? = null




© 2015 - 2025 Weber Informatics LLC | Privacy Policy