
commonMain.androidx.compose.material.icons.rounded.WrapText.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.WrapText",
ReplaceWith( "Icons.AutoMirrored.Rounded.WrapText",
"androidx.compose.material.icons.automirrored.rounded.WrapText"),
)
public val Icons.Rounded.WrapText: ImageVector
get() {
if (_wrapText != null) {
return _wrapText!!
}
_wrapText = materialIcon(name = "Rounded.WrapText") {
materialPath {
moveTo(5.0f, 7.0f)
horizontalLineToRelative(14.0f)
curveToRelative(0.55f, 0.0f, 1.0f, -0.45f, 1.0f, -1.0f)
reflectiveCurveToRelative(-0.45f, -1.0f, -1.0f, -1.0f)
lineTo(5.0f, 5.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, 0.45f, -1.0f, 1.0f)
reflectiveCurveToRelative(0.45f, 1.0f, 1.0f, 1.0f)
close()
moveTo(16.83f, 11.0f)
lineTo(5.0f, 11.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, 0.45f, -1.0f, 1.0f)
reflectiveCurveToRelative(0.45f, 1.0f, 1.0f, 1.0f)
horizontalLineToRelative(12.13f)
curveToRelative(1.0f, 0.0f, 1.93f, 0.67f, 2.09f, 1.66f)
curveToRelative(0.21f, 1.25f, -0.76f, 2.34f, -1.97f, 2.34f)
lineTo(15.0f, 17.0f)
verticalLineToRelative(-0.79f)
curveToRelative(0.0f, -0.45f, -0.54f, -0.67f, -0.85f, -0.35f)
lineToRelative(-1.79f, 1.79f)
curveToRelative(-0.2f, 0.2f, -0.2f, 0.51f, 0.0f, 0.71f)
lineToRelative(1.79f, 1.79f)
curveToRelative(0.32f, 0.32f, 0.85f, 0.09f, 0.85f, -0.35f)
lineTo(15.0f, 19.0f)
horizontalLineToRelative(2.0f)
curveToRelative(2.34f, 0.0f, 4.21f, -2.01f, 3.98f, -4.39f)
curveToRelative(-0.2f, -2.08f, -2.06f, -3.61f, -4.15f, -3.61f)
close()
moveTo(9.0f, 17.0f)
lineTo(5.0f, 17.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, 0.45f, -1.0f, 1.0f)
reflectiveCurveToRelative(0.45f, 1.0f, 1.0f, 1.0f)
horizontalLineToRelative(4.0f)
curveToRelative(0.55f, 0.0f, 1.0f, -0.45f, 1.0f, -1.0f)
reflectiveCurveToRelative(-0.45f, -1.0f, -1.0f, -1.0f)
close()
}
}
return _wrapText!!
}
private var _wrapText: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy