commonMain.compose.icons.tablericons.filled.Icons.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
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.Butt
import androidx.compose.ui.graphics.StrokeJoin
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.Icons: ImageVector
get() {
if (_icons != null) {
return _icons!!
}
_icons = Builder(name = "Icons", 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(4.25f, 2.603f)
arcToRelative(4.5f, 4.5f, 0.0f, true, true, -2.25f, 3.897f)
lineToRelative(0.006f, -0.229f)
arcToRelative(4.5f, 4.5f, 0.0f, false, true, 2.244f, -3.668f)
}
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(5.632f, 13.504f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.736f, 0.0f)
lineToRelative(4.0f, 7.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.868f, 1.496f)
horizontalLineToRelative(-8.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -0.868f, -1.496f)
close()
}
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(13.293f, 2.293f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.414f, 0.0f)
lineToRelative(7.0f, 7.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, -1.414f, 1.414f)
lineToRelative(-7.0f, -7.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 0.0f, -1.414f)
}
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(20.293f, 2.293f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.414f, 1.414f)
lineToRelative(-7.0f, 7.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.414f, -1.414f)
close()
}
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = NonZero) {
moveTo(21.0f, 13.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, 1.0f)
verticalLineToRelative(7.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, 1.0f)
horizontalLineToRelative(-7.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, -1.0f, -1.0f)
verticalLineToRelative(-7.0f)
arcToRelative(1.0f, 1.0f, 0.0f, false, true, 1.0f, -1.0f)
close()
}
}
.build()
return _icons!!
}
private var _icons: ImageVector? = null