commonMain.androidx.compose.material.icons.rounded.Subway.kt Maven / Gradle / Ivy
/*
* Copyright 2024 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package androidx.compose.material.icons.rounded
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.materialIcon
import androidx.compose.material.icons.materialPath
import androidx.compose.ui.graphics.vector.ImageVector
public val Icons.Rounded.Subway: ImageVector
get() {
if (_subway != null) {
return _subway!!
}
_subway = materialIcon(name = "Rounded.Subway") {
materialPath {
moveTo(8.5f, 16.0f)
moveToRelative(-1.0f, 0.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f)
}
materialPath {
moveTo(15.5f, 16.0f)
moveToRelative(-1.0f, 0.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, 2.0f, 0.0f)
arcToRelative(1.0f, 1.0f, 0.0f, true, true, -2.0f, 0.0f)
}
materialPath {
moveTo(7.01f, 9.0f)
horizontalLineToRelative(10.0f)
verticalLineToRelative(5.0f)
horizontalLineToRelative(-10.0f)
close()
moveTo(17.8f, 2.8f)
curveTo(16.0f, 2.09f, 13.86f, 2.0f, 12.0f, 2.0f)
reflectiveCurveToRelative(-4.0f, 0.09f, -5.8f, 0.8f)
curveTo(3.53f, 3.84f, 2.0f, 6.05f, 2.0f, 8.86f)
lineTo(2.0f, 22.0f)
horizontalLineToRelative(20.0f)
lineTo(22.0f, 8.86f)
curveToRelative(0.0f, -2.81f, -1.53f, -5.02f, -4.2f, -6.06f)
close()
moveTo(18.0f, 15.5f)
curveToRelative(0.0f, 1.54f, -1.16f, 2.79f, -2.65f, 2.96f)
lineToRelative(1.15f, 1.16f)
lineTo(16.5f, 20.0f)
horizontalLineToRelative(-1.67f)
lineToRelative(-1.5f, -1.5f)
horizontalLineToRelative(-2.66f)
lineTo(9.17f, 20.0f)
lineTo(7.5f, 20.0f)
verticalLineToRelative(-0.38f)
lineToRelative(1.15f, -1.16f)
curveTo(7.16f, 18.29f, 6.0f, 17.04f, 6.0f, 15.5f)
lineTo(6.0f, 9.0f)
curveToRelative(0.0f, -2.63f, 3.0f, -3.0f, 6.0f, -3.0f)
reflectiveCurveToRelative(6.0f, 0.37f, 6.0f, 3.0f)
verticalLineToRelative(6.5f)
close()
}
}
return _subway!!
}
private var _subway: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy