commonMain.androidx.compose.material.icons.rounded.DirectionsBike.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of material-icons-extended-desktop Show documentation
Show all versions of material-icons-extended-desktop Show documentation
Compose Material Design extended icons. This module contains all Material icons. It is a very large dependency and should not be included directly.
The newest version!
/*
* 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
import kotlin.Deprecated
@Deprecated(
"Use the AutoMirrored version at Icons.AutoMirrored.Rounded.DirectionsBike",
ReplaceWith( "Icons.AutoMirrored.Rounded.DirectionsBike",
"androidx.compose.material.icons.automirrored.rounded.DirectionsBike"),
)
public val Icons.Rounded.DirectionsBike: ImageVector
get() {
if (_directionsBike != null) {
return _directionsBike!!
}
_directionsBike = materialIcon(name = "Rounded.DirectionsBike") {
materialPath {
moveTo(15.5f, 5.5f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
reflectiveCurveToRelative(-0.9f, -2.0f, -2.0f, -2.0f)
reflectiveCurveToRelative(-2.0f, 0.9f, -2.0f, 2.0f)
reflectiveCurveToRelative(0.9f, 2.0f, 2.0f, 2.0f)
close()
moveTo(5.0f, 12.0f)
curveToRelative(-2.8f, 0.0f, -5.0f, 2.2f, -5.0f, 5.0f)
reflectiveCurveToRelative(2.2f, 5.0f, 5.0f, 5.0f)
reflectiveCurveToRelative(5.0f, -2.2f, 5.0f, -5.0f)
reflectiveCurveToRelative(-2.2f, -5.0f, -5.0f, -5.0f)
close()
moveTo(5.0f, 20.5f)
curveToRelative(-1.9f, 0.0f, -3.5f, -1.6f, -3.5f, -3.5f)
reflectiveCurveToRelative(1.6f, -3.5f, 3.5f, -3.5f)
reflectiveCurveToRelative(3.5f, 1.6f, 3.5f, 3.5f)
reflectiveCurveToRelative(-1.6f, 3.5f, -3.5f, 3.5f)
close()
moveTo(10.8f, 10.5f)
lineToRelative(2.4f, -2.4f)
lineToRelative(0.8f, 0.8f)
curveToRelative(1.06f, 1.06f, 2.38f, 1.78f, 3.96f, 2.02f)
curveToRelative(0.6f, 0.09f, 1.14f, -0.39f, 1.14f, -1.0f)
curveToRelative(0.0f, -0.49f, -0.37f, -0.91f, -0.85f, -0.99f)
curveToRelative(-1.11f, -0.18f, -2.02f, -0.71f, -2.75f, -1.43f)
lineToRelative(-1.9f, -1.9f)
curveToRelative(-0.5f, -0.4f, -1.0f, -0.6f, -1.6f, -0.6f)
reflectiveCurveToRelative(-1.1f, 0.2f, -1.4f, 0.6f)
lineTo(7.8f, 8.4f)
curveToRelative(-0.4f, 0.4f, -0.6f, 0.9f, -0.6f, 1.4f)
curveToRelative(0.0f, 0.6f, 0.2f, 1.1f, 0.6f, 1.4f)
lineTo(11.0f, 14.0f)
verticalLineToRelative(4.0f)
curveToRelative(0.0f, 0.55f, 0.45f, 1.0f, 1.0f, 1.0f)
reflectiveCurveToRelative(1.0f, -0.45f, 1.0f, -1.0f)
verticalLineToRelative(-4.4f)
curveToRelative(0.0f, -0.52f, -0.2f, -1.01f, -0.55f, -1.38f)
lineTo(10.8f, 10.5f)
close()
moveTo(19.0f, 12.0f)
curveToRelative(-2.8f, 0.0f, -5.0f, 2.2f, -5.0f, 5.0f)
reflectiveCurveToRelative(2.2f, 5.0f, 5.0f, 5.0f)
reflectiveCurveToRelative(5.0f, -2.2f, 5.0f, -5.0f)
reflectiveCurveToRelative(-2.2f, -5.0f, -5.0f, -5.0f)
close()
moveTo(19.0f, 20.5f)
curveToRelative(-1.9f, 0.0f, -3.5f, -1.6f, -3.5f, -3.5f)
reflectiveCurveToRelative(1.6f, -3.5f, 3.5f, -3.5f)
reflectiveCurveToRelative(3.5f, 1.6f, 3.5f, 3.5f)
reflectiveCurveToRelative(-1.6f, 3.5f, -3.5f, 3.5f)
close()
}
}
return _directionsBike!!
}
private var _directionsBike: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy