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

commonMain.compose.icons.tablericons.outline.StarsOff.kt Maven / Gradle / Ivy

The newest version!
package compose.icons.tablericons.outline

import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeCap.Companion.Round
import androidx.compose.ui.graphics.StrokeJoin
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.tablericons.OutlineGroup

public val OutlineGroup.StarsOff: ImageVector
    get() {
        if (_starsOff != null) {
            return _starsOff!!
        }
        _starsOff = Builder(name = "StarsOff", defaultWidth = 24.0.dp, defaultHeight = 24.0.dp,
                viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
            path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
                    strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
                    StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
                moveTo(17.373f, 13.371f)
                lineToRelative(0.076f, -0.154f)
                arcToRelative(0.392f, 0.392f, 0.0f, false, true, 0.702f, 0.0f)
                lineToRelative(0.907f, 1.831f)
                moveToRelative(0.367f, 0.39f)
                curveToRelative(0.498f, 0.071f, 1.245f, 0.18f, 2.24f, 0.324f)
                arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.217f, 0.665f)
                curveToRelative(-0.326f, 0.316f, -0.57f, 0.553f, -0.732f, 0.712f)
                moveToRelative(-0.611f, 3.405f)
                arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.567f, 0.411f)
                lineToRelative(-2.172f, -1.138f)
                lineToRelative(-2.172f, 1.138f)
                arcToRelative(0.392f, 0.392f, 0.0f, false, true, -0.568f, -0.41f)
                lineToRelative(0.415f, -2.411f)
                lineToRelative(-1.757f, -1.707f)
                arcToRelative(0.389f, 0.389f, 0.0f, false, true, 0.217f, -0.665f)
                lineToRelative(1.601f, -0.232f)
            }
            path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
                    strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
                    StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
                moveTo(6.2f, 19.817f)
                lineToRelative(-2.172f, 1.138f)
                arcToRelative(0.392f, 0.392f, 0.0f, false, true, -0.568f, -0.41f)
                lineToRelative(0.415f, -2.411f)
                lineToRelative(-1.757f, -1.707f)
                arcToRelative(0.389f, 0.389f, 0.0f, false, true, 0.217f, -0.665f)
                lineToRelative(2.428f, -0.352f)
                lineToRelative(1.086f, -2.193f)
                arcToRelative(0.392f, 0.392f, 0.0f, false, true, 0.702f, 0.0f)
                lineToRelative(1.086f, 2.193f)
                lineToRelative(2.428f, 0.352f)
                arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.217f, 0.665f)
                lineToRelative(-1.757f, 1.707f)
                lineToRelative(0.414f, 2.41f)
                arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.567f, 0.411f)
                lineToRelative(-2.172f, -1.138f)
                close()
            }
            path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
                    strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
                    StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
                moveTo(9.557f, 5.556f)
                lineToRelative(1.0f, -0.146f)
                lineToRelative(1.086f, -2.193f)
                arcToRelative(0.392f, 0.392f, 0.0f, false, true, 0.702f, 0.0f)
                lineToRelative(1.086f, 2.193f)
                lineToRelative(2.428f, 0.352f)
                arcToRelative(0.39f, 0.39f, 0.0f, false, true, 0.217f, 0.665f)
                lineToRelative(-1.757f, 1.707f)
                lineToRelative(0.414f, 2.41f)
                arcToRelative(0.39f, 0.39f, 0.0f, false, true, -0.014f, 0.187f)
                moveToRelative(-4.153f, -0.166f)
                lineToRelative(-0.744f, 0.39f)
                arcToRelative(0.392f, 0.392f, 0.0f, false, true, -0.568f, -0.41f)
                lineToRelative(0.188f, -1.093f)
            }
            path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
                    strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
                    StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
                moveTo(3.0f, 3.0f)
                lineToRelative(18.0f, 18.0f)
            }
        }
        .build()
        return _starsOff!!
    }

private var _starsOff: ImageVector? = null




© 2015 - 2024 Weber Informatics LLC | Privacy Policy