commonMain.compose.icons.tablericons.outline.BeachOff.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.outline
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.OutlineGroup
public val OutlineGroup.BeachOff: ImageVector
get() {
if (_beachOff != null) {
return _beachOff!!
}
_beachOff = Builder(name = "BeachOff", 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(15.071f, 15.102f)
arcToRelative(7.502f, 7.502f, 0.0f, false, false, -8.124f, 1.648f)
}
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.27f, 6.269f)
lineToRelative(9.926f, 5.731f)
arcToRelative(6.0f, 6.0f, 0.0f, false, false, -10.32f, -6.123f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(16.732f, 10.0f)
curveToRelative(1.658f, -2.87f, 2.225f, -5.644f, 1.268f, -6.196f)
curveToRelative(-0.957f, -0.552f, -3.075f, 1.326f, -4.732f, 4.196f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(15.0f, 9.0f)
lineToRelative(-0.739f, 1.279f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(12.794f, 12.82f)
lineToRelative(-0.794f, 1.376f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(3.0f, 19.25f)
arcToRelative(2.4f, 2.4f, 0.0f, false, true, 1.0f, -0.25f)
arcToRelative(2.4f, 2.4f, 0.0f, false, true, 2.0f, 1.0f)
arcToRelative(2.4f, 2.4f, 0.0f, false, false, 2.0f, 1.0f)
arcToRelative(2.4f, 2.4f, 0.0f, false, false, 2.0f, -1.0f)
arcToRelative(2.4f, 2.4f, 0.0f, false, true, 2.0f, -1.0f)
arcToRelative(2.4f, 2.4f, 0.0f, false, true, 2.0f, 1.0f)
arcToRelative(2.4f, 2.4f, 0.0f, false, false, 2.0f, 1.0f)
arcToRelative(2.4f, 2.4f, 0.0f, false, false, 2.0f, -1.0f)
arcToRelative(2.4f, 2.4f, 0.0f, false, true, 1.135f, -0.858f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(3.0f, 3.0f)
lineToRelative(18.0f, 18.0f)
}
}
.build()
return _beachOff!!
}
private var _beachOff: ImageVector? = null