commonMain.androidx.compose.material.icons.rounded.Usb.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.Usb: ImageVector
get() {
if (_usb != null) {
return _usb!!
}
_usb = materialIcon(name = "Rounded.Usb") {
materialPath {
moveTo(18.0f, 7.0f)
horizontalLineToRelative(-2.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, 0.45f, -1.0f, 1.0f)
verticalLineToRelative(2.0f)
curveToRelative(0.0f, 0.55f, 0.45f, 1.0f, 1.0f, 1.0f)
verticalLineToRelative(2.0f)
horizontalLineToRelative(-3.0f)
verticalLineTo(5.0f)
horizontalLineToRelative(1.0f)
curveToRelative(0.41f, 0.0f, 0.65f, -0.47f, 0.4f, -0.8f)
lineToRelative(-2.0f, -2.67f)
curveToRelative(-0.2f, -0.27f, -0.6f, -0.27f, -0.8f, 0.0f)
lineToRelative(-2.0f, 2.67f)
curveToRelative(-0.25f, 0.33f, -0.01f, 0.8f, 0.4f, 0.8f)
horizontalLineToRelative(1.0f)
verticalLineToRelative(8.0f)
horizontalLineTo(8.0f)
verticalLineToRelative(-2.07f)
curveToRelative(0.83f, -0.44f, 1.38f, -1.36f, 1.14f, -2.43f)
curveToRelative(-0.17f, -0.77f, -0.77f, -1.4f, -1.52f, -1.61f)
curveTo(6.15f, 6.48f, 4.8f, 7.59f, 4.8f, 9.0f)
curveToRelative(0.0f, 0.85f, 0.5f, 1.56f, 1.2f, 1.93f)
verticalLineTo(13.0f)
curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f)
horizontalLineToRelative(3.0f)
verticalLineToRelative(3.05f)
curveToRelative(-0.86f, 0.45f, -1.39f, 1.42f, -1.13f, 2.49f)
curveToRelative(0.18f, 0.75f, 0.79f, 1.38f, 1.54f, 1.58f)
curveToRelative(1.46f, 0.39f, 2.8f, -0.7f, 2.8f, -2.12f)
curveToRelative(0.0f, -0.85f, -0.49f, -1.58f, -1.2f, -1.95f)
verticalLineTo(15.0f)
horizontalLineToRelative(3.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
verticalLineToRelative(-2.0f)
curveToRelative(0.55f, 0.0f, 1.0f, -0.45f, 1.0f, -1.0f)
verticalLineTo(8.0f)
curveTo(19.0f, 7.45f, 18.55f, 7.0f, 18.0f, 7.0f)
close()
}
}
return _usb!!
}
private var _usb: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy