import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeJoin
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
public val Dock_to_bottom: ImageVector
get() {
if (_Dock_to_bottom != null) {
return _Dock_to_bottom!!
}
_Dock_to_bottom = ImageVector.Builder(
name = "Dock_to_bottom",
defaultWidth = 24.dp,
defaultHeight = 24.dp,
viewportWidth = 960f,
viewportHeight = 960f
).apply {
path(
fill = SolidColor(Color.Black),
fillAlpha = 1.0f,
stroke = null,
strokeAlpha = 1.0f,
strokeLineWidth = 1.0f,
strokeLineCap = StrokeCap.Butt,
strokeLineJoin = StrokeJoin.Miter,
strokeLineMiter = 1.0f,
pathFillType = PathFillType.NonZero
) {
moveTo(200f, 840f)
quadToRelative(-33f, 0f, -56.5f, -23.5f)
reflectiveQuadTo(120f, 760f)
verticalLineToRelative(-560f)
quadToRelative(0f, -33f, 23.5f, -56.5f)
reflectiveQuadTo(200f, 120f)
horizontalLineToRelative(560f)
quadToRelative(33f, 0f, 56.5f, 23.5f)
reflectiveQuadTo(840f, 200f)
verticalLineToRelative(560f)
quadToRelative(0f, 33f, -23.5f, 56.5f)
reflectiveQuadTo(760f, 840f)
close()
moveToRelative(0f, -200f)
verticalLineToRelative(120f)
horizontalLineToRelative(560f)
verticalLineToRelative(-120f)
close()
moveToRelative(0f, -80f)
horizontalLineToRelative(560f)
verticalLineToRelative(-360f)
horizontalLineTo(200f)
close()
moveToRelative(0f, 80f)
verticalLineToRelative(120f)
close()
}
}.build()
return _Dock_to_bottom!!
}
private var _Dock_to_bottom: ImageVector? = null