commonMain.compose.icons.tablericons.outline.BrandDocker.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.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.BrandDocker: ImageVector
get() {
if (_brandDocker != null) {
return _brandDocker!!
}
_brandDocker = Builder(name = "BrandDocker", 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(22.0f, 12.54f)
curveToRelative(-1.804f, -0.345f, -2.701f, -1.08f, -3.523f, -2.94f)
curveToRelative(-0.487f, 0.696f, -1.102f, 1.568f, -0.92f, 2.4f)
curveToRelative(0.028f, 0.238f, -0.32f, 1.0f, -0.557f, 1.0f)
horizontalLineToRelative(-14.0f)
curveToRelative(0.0f, 5.208f, 3.164f, 7.0f, 6.196f, 7.0f)
curveToRelative(4.124f, 0.022f, 7.828f, -1.376f, 9.854f, -5.0f)
curveToRelative(1.146f, -0.101f, 2.296f, -1.505f, 2.95f, -2.46f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(5.0f, 10.0f)
horizontalLineToRelative(3.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(-3.0f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(8.0f, 10.0f)
horizontalLineToRelative(3.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(-3.0f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(11.0f, 10.0f)
horizontalLineToRelative(3.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(-3.0f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(8.0f, 7.0f)
horizontalLineToRelative(3.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(-3.0f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(11.0f, 7.0f)
horizontalLineToRelative(3.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(-3.0f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(11.0f, 4.0f)
horizontalLineToRelative(3.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(-3.0f)
close()
}
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.571f, 18.0f)
curveToRelative(1.5f, 0.0f, 2.047f, -0.074f, 2.958f, -0.78f)
}
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, 16.0f)
lineToRelative(0.0f, 0.01f)
}
}
.build()
return _brandDocker!!
}
private var _brandDocker: ImageVector? = null