commonMain.androidx.compose.material.icons.rounded.AccessibleForward.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.AccessibleForward",
ReplaceWith( "Icons.AutoMirrored.Rounded.AccessibleForward",
"androidx.compose.material.icons.automirrored.rounded.AccessibleForward"),
)
public val Icons.Rounded.AccessibleForward: ImageVector
get() {
if (_accessibleForward != null) {
return _accessibleForward!!
}
_accessibleForward = materialIcon(name = "Rounded.AccessibleForward") {
materialPath {
moveTo(18.0f, 4.54f)
moveToRelative(-2.0f, 0.0f)
arcToRelative(2.0f, 2.0f, 0.0f, true, true, 4.0f, 0.0f)
arcToRelative(2.0f, 2.0f, 0.0f, true, true, -4.0f, 0.0f)
}
materialPath {
moveTo(15.0f, 17.0f)
horizontalLineToRelative(-2.0f)
curveToRelative(0.0f, 1.65f, -1.35f, 3.0f, -3.0f, 3.0f)
reflectiveCurveToRelative(-3.0f, -1.35f, -3.0f, -3.0f)
reflectiveCurveToRelative(1.35f, -3.0f, 3.0f, -3.0f)
verticalLineToRelative(-2.0f)
curveToRelative(-2.76f, 0.0f, -5.0f, 2.24f, -5.0f, 5.0f)
reflectiveCurveToRelative(2.24f, 5.0f, 5.0f, 5.0f)
reflectiveCurveToRelative(5.0f, -2.24f, 5.0f, -5.0f)
close()
moveTo(18.0f, 13.5f)
horizontalLineToRelative(-1.86f)
lineToRelative(1.67f, -3.67f)
curveTo(18.42f, 8.5f, 17.44f, 7.0f, 15.96f, 7.0f)
horizontalLineToRelative(-5.2f)
curveToRelative(-0.81f, 0.0f, -1.54f, 0.47f, -1.87f, 1.2f)
lineToRelative(-0.28f, 0.76f)
curveToRelative(-0.21f, 0.56f, 0.11f, 1.17f, 0.68f, 1.33f)
curveToRelative(0.49f, 0.14f, 1.0f, -0.11f, 1.2f, -0.58f)
lineToRelative(0.3f, -0.71f)
lineTo(13.0f, 9.0f)
lineToRelative(-1.83f, 4.1f)
curveToRelative(-0.6f, 1.33f, 0.39f, 2.9f, 1.85f, 2.9f)
lineTo(18.0f, 16.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.5f)
curveToRelative(0.0f, -1.1f, -0.9f, -2.0f, -2.0f, -2.0f)
close()
}
}
return _accessibleForward!!
}
private var _accessibleForward: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy