
commonMain.androidx.compose.material.icons.rounded.Accessible.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
import kotlin.Deprecated
@Deprecated(
"Use the AutoMirrored version at Icons.AutoMirrored.Rounded.Accessible",
ReplaceWith( "Icons.AutoMirrored.Rounded.Accessible",
"androidx.compose.material.icons.automirrored.rounded.Accessible"),
)
public val Icons.Rounded.Accessible: ImageVector
get() {
if (_accessible != null) {
return _accessible!!
}
_accessible = materialIcon(name = "Rounded.Accessible") {
materialPath {
moveTo(12.0f, 4.0f)
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(19.0f, 11.9f)
curveToRelative(0.0f, -0.49f, -0.36f, -0.89f, -0.84f, -0.97f)
curveToRelative(-1.25f, -0.21f, -2.43f, -0.88f, -3.23f, -1.76f)
lineToRelative(-1.29f, -1.43f)
curveToRelative(-0.17f, -0.19f, -0.38f, -0.34f, -0.61f, -0.45f)
curveToRelative(-0.01f, 0.0f, -0.01f, -0.01f, -0.02f, -0.01f)
horizontalLineTo(13.0f)
curveToRelative(-0.37f, -0.21f, -0.78f, -0.31f, -1.25f, -0.25f)
curveTo(10.73f, 7.15f, 10.0f, 8.07f, 10.0f, 9.1f)
verticalLineTo(15.0f)
curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f)
horizontalLineToRelative(5.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)
horizontalLineToRelative(-3.0f)
verticalLineToRelative(-3.45f)
curveToRelative(1.0f, 0.83f, 2.4f, 1.54f, 3.8f, 1.82f)
curveToRelative(0.62f, 0.13f, 1.2f, -0.34f, 1.2f, -0.97f)
close()
moveTo(12.83f, 18.0f)
curveToRelative(-0.41f, 1.16f, -1.52f, 2.0f, -2.83f, 2.0f)
curveToRelative(-1.66f, 0.0f, -3.0f, -1.34f, -3.0f, -3.0f)
curveToRelative(0.0f, -1.31f, 0.84f, -2.41f, 2.0f, -2.83f)
verticalLineTo(12.1f)
curveToRelative(-2.28f, 0.46f, -4.0f, 2.48f, -4.0f, 4.9f)
curveToRelative(0.0f, 2.76f, 2.24f, 5.0f, 5.0f, 5.0f)
curveToRelative(2.42f, 0.0f, 4.44f, -1.72f, 4.9f, -4.0f)
horizontalLineToRelative(-2.07f)
close()
}
}
return _accessible!!
}
private var _accessible: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy