commonMain.compose.icons.tablericons.filled.BrandSpotify.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tabler-icons Show documentation
Show all versions of tabler-icons Show documentation
Fork of BenjaminHalko's implementation of DevSrSouza's Compose Icons
The newest version!
package compose.icons.tablericons.filled
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.tablericons.FilledGroup
public val FilledGroup.BrandSpotify: ImageVector
get() {
if (_brandSpotify != null) {
return _brandSpotify!!
}
_brandSpotify = Builder(name = "BrandSpotify", 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(17.0f, 3.34f)
arcToRelative(10.0f, 10.0f, 0.0f, true, true, -15.0f, 8.66f)
lineToRelative(0.005f, -0.324f)
arcToRelative(10.0f, 10.0f, 0.0f, false, true, 14.995f, -8.336f)
moveToRelative(-2.168f, 11.605f)
curveToRelative(-1.285f, -1.927f, -4.354f, -2.132f, -6.387f, -0.777f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.11f, 1.664f)
curveToRelative(1.195f, -0.797f, 3.014f, -0.675f, 3.613f, 0.223f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.664f, -1.11f)
moveToRelative(1.268f, -3.245f)
curveToRelative(-2.469f, -1.852f, -5.895f, -2.187f, -8.608f, -0.589f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.016f, 1.724f)
curveToRelative(1.986f, -1.171f, 4.544f, -0.92f, 6.392f, 0.465f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 1.2f, -1.6f)
moveToRelative(1.43f, -3.048f)
curveToRelative(-3.677f, -2.298f, -7.766f, -2.152f, -10.977f, -0.546f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.894f, 1.788f)
curveToRelative(2.635f, -1.317f, 5.997f, -1.437f, 9.023f, 0.454f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 1.06f, -1.696f)
}
}
.build()
return _brandSpotify!!
}
private var _brandSpotify: ImageVector? = null