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

commonMain.compose.icons.simpleicons._1password.kt Maven / Gradle / Ivy

package compose.icons.simpleicons

import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt
import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.ImageVector.Builder
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import compose.icons.SimpleIcons

public val SimpleIcons._1password: ImageVector
    get() {
        if (__1password != null) {
            return __1password!!
        }
        __1password = Builder(name = "_1password", defaultWidth = 24.0.dp, defaultHeight = 24.0.dp,
                viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
            path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
                    strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
                    pathFillType = NonZero) {
                moveTo(10.51f, 10.013f)
                verticalLineTo(7.299f)
                curveToRelative(0.0f, -0.306f, 0.248f, -0.554f, 0.554f, -0.554f)
                horizontalLineToRelative(1.911f)
                curveToRelative(0.306f, 0.0f, 0.554f, 0.248f, 0.554f, 0.554f)
                verticalLineToRelative(4.968f)
                curveToRelative(0.0f, 0.076f, -0.038f, 0.134f, -0.076f, 0.191f)
                lineToRelative(-0.478f, 0.478f)
                curveToRelative(-0.115f, 0.115f, -0.115f, 0.287f, 0.0f, 0.382f)
                lineToRelative(0.478f, 0.478f)
                curveToRelative(0.057f, 0.057f, 0.076f, 0.115f, 0.076f, 0.191f)
                verticalLineToRelative(2.713f)
                curveToRelative(0.0f, 0.306f, -0.248f, 0.554f, -0.554f, 0.554f)
                horizontalLineToRelative(-1.911f)
                curveToRelative(-0.306f, 0.0f, -0.554f, -0.248f, -0.554f, -0.554f)
                verticalLineToRelative(-4.968f)
                curveToRelative(0.0f, -0.076f, 0.038f, -0.134f, 0.076f, -0.191f)
                lineToRelative(0.478f, -0.478f)
                curveToRelative(0.115f, -0.115f, 0.115f, -0.287f, 0.0f, -0.382f)
                lineToRelative(-0.478f, -0.478f)
                curveTo(10.529f, 10.146f, 10.51f, 10.089f, 10.51f, 10.013f)
                close()
                moveTo(19.127f, 12.0f)
                curveToRelative(0.0f, -3.936f, -3.191f, -7.127f, -7.127f, -7.127f)
                reflectiveCurveTo(4.873f, 8.064f, 4.873f, 12.0f)
                reflectiveCurveTo(8.064f, 19.127f, 12.0f, 19.127f)
                reflectiveCurveTo(19.127f, 15.936f, 19.127f, 12.0f)
                close()
                moveTo(21.382f, 12.0f)
                curveToRelative(0.0f, 5.178f, -4.204f, 9.363f, -9.363f, 9.363f)
                curveToRelative(-5.178f, 0.0f, -9.363f, -4.204f, -9.363f, -9.363f)
                curveToRelative(0.0f, -5.178f, 4.204f, -9.363f, 9.363f, -9.363f)
                curveTo(17.178f, 2.637f, 21.382f, 6.822f, 21.382f, 12.0f)
                close()
                moveTo(0.764f, 12.0f)
                curveToRelative(0.0f, 6.21f, 5.025f, 11.236f, 11.236f, 11.236f)
                reflectiveCurveTo(23.236f, 18.21f, 23.236f, 12.0f)
                reflectiveCurveTo(18.21f, 0.764f, 12.0f, 0.764f)
                reflectiveCurveTo(0.764f, 5.79f, 0.764f, 12.0f)
                close()
                moveTo(0.0f, 12.0f)
                curveTo(0.0f, 5.369f, 5.369f, 0.0f, 12.0f, 0.0f)
                curveToRelative(6.631f, 0.0f, 12.0f, 5.369f, 12.0f, 12.0f)
                reflectiveCurveToRelative(-5.369f, 12.0f, -12.0f, 12.0f)
                reflectiveCurveTo(0.0f, 18.631f, 0.0f, 12.0f)
                close()
            }
        }
        .build()
        return __1password!!
    }

private var __1password: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy