commonMain.compose.icons.tablericons.filled.PlayCard3.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
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.PlayCard3: ImageVector
get() {
if (_playCard3 != null) {
return _playCard3!!
}
_playCard3 = Builder(name = "PlayCard3", 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, 2.0f)
arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, 3.0f)
verticalLineToRelative(14.0f)
arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, 3.0f)
horizontalLineToRelative(-10.0f)
arcToRelative(3.0f, 3.0f, 0.0f, false, true, -3.0f, -3.0f)
verticalLineToRelative(-14.0f)
arcToRelative(3.0f, 3.0f, 0.0f, false, true, 3.0f, -3.0f)
close()
moveTo(17.01f, 18.0f)
horizontalLineToRelative(-0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.117f, 1.993f)
lineToRelative(0.127f, 0.007f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, -2.0f)
moveToRelative(-4.51f, -10.0f)
horizontalLineToRelative(-2.5f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, 2.0f)
horizontalLineToRelative(2.5f)
arcToRelative(0.5f, 0.5f, 0.0f, false, true, 0.09f, 0.992f)
lineToRelative(-0.09f, 0.008f)
horizontalLineToRelative(-1.5f)
curveToRelative(-1.287f, 0.0f, -1.332f, 1.864f, -0.133f, 1.993f)
lineToRelative(0.133f, 0.007f)
horizontalLineToRelative(1.5f)
arcToRelative(0.5f, 0.5f, 0.0f, true, true, 0.0f, 1.0f)
horizontalLineToRelative(-2.5f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, 0.0f, 2.0f)
horizontalLineToRelative(2.5f)
arcToRelative(2.5f, 2.5f, 0.0f, false, false, 2.5f, -2.5f)
lineToRelative(-0.005f, -0.164f)
arcToRelative(2.5f, 2.5f, 0.0f, false, false, -0.477f, -1.312f)
lineToRelative(-0.019f, -0.024f)
lineToRelative(0.019f, -0.024f)
arcToRelative(2.5f, 2.5f, 0.0f, false, false, -2.018f, -3.976f)
moveToRelative(-5.49f, -4.0f)
horizontalLineToRelative(-0.01f)
arcToRelative(1.0f, 1.0f, 0.0f, false, false, -0.117f, 1.993f)
lineToRelative(0.127f, 0.007f)
arcToRelative(1.0f, 1.0f, 0.0f, true, false, 0.0f, -2.0f)
}
}
.build()
return _playCard3!!
}
private var _playCard3: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy