commonMain.compose.icons.tablericons.Snowflake.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tabler-icons-desktop Show documentation
Show all versions of tabler-icons-desktop Show documentation
Compose icons is a set of open source icons packs for Compose Multiplatform
The newest version!
package compose.icons.tablericons
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
public val TablerIcons.Snowflake: ImageVector
get() {
if (_snowflake != null) {
return _snowflake!!
}
_snowflake = Builder(name = "Snowflake", 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(10.0f, 4.0f)
lineToRelative(2.0f, 1.0f)
lineToRelative(2.0f, -1.0f)
moveToRelative(-2.0f, -2.0f)
verticalLineToRelative(6.5f)
lineToRelative(3.0f, 1.72f)
}
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.928f, 6.268f)
lineToRelative(0.134f, 2.232f)
lineToRelative(1.866f, 1.232f)
moveToRelative(0.732f, -2.732f)
lineToRelative(-5.629f, 3.25f)
lineToRelative(0.01f, 3.458f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(19.928f, 14.268f)
lineToRelative(-1.866f, 1.232f)
lineToRelative(-0.134f, 2.232f)
moveToRelative(2.732f, -0.732f)
lineToRelative(-5.629f, -3.25f)
lineToRelative(-2.99f, 1.738f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(14.0f, 20.0f)
lineToRelative(-2.0f, -1.0f)
lineToRelative(-2.0f, 1.0f)
moveToRelative(2.0f, 2.0f)
lineToRelative(-0.0f, -6.5f)
lineToRelative(-3.0f, -1.72f)
}
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.072f, 17.732f)
lineToRelative(-0.134f, -2.232f)
lineToRelative(-1.866f, -1.232f)
moveToRelative(-0.732f, 2.732f)
lineToRelative(5.629f, -3.25f)
lineToRelative(-0.01f, -3.458f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(4.072f, 9.732f)
lineToRelative(1.866f, -1.232f)
lineToRelative(0.134f, -2.232f)
moveToRelative(-2.732f, 0.732f)
lineToRelative(5.629f, 3.25f)
lineToRelative(2.99f, -1.738f)
}
}
.build()
return _snowflake!!
}
private var _snowflake: ImageVector? = null