commonMain.compose.icons.tablericons.filled.Keyframe.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.Keyframe: ImageVector
get() {
if (_keyframe != null) {
return _keyframe!!
}
_keyframe = Builder(name = "Keyframe", 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(12.0f, 4.0f)
arcToRelative(2.599f, 2.599f, 0.0f, false, false, -2.0f, 0.957f)
lineToRelative(-4.355f, 5.24f)
arcToRelative(2.847f, 2.847f, 0.0f, false, false, -0.007f, 3.598f)
lineToRelative(4.368f, 5.256f)
curveToRelative(0.499f, 0.6f, 1.225f, 0.949f, 1.994f, 0.949f)
arcToRelative(2.599f, 2.599f, 0.0f, false, false, 2.0f, -0.957f)
lineToRelative(4.355f, -5.24f)
arcToRelative(2.847f, 2.847f, 0.0f, false, false, 0.007f, -3.598f)
lineToRelative(-4.368f, -5.256f)
arcToRelative(2.593f, 2.593f, 0.0f, false, false, -1.994f, -0.949f)
close()
}
}
.build()
return _keyframe!!
}
private var _keyframe: ImageVector? = null