commonMain.androidx.compose.material.icons.twotone.CastConnected.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.twotone
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.TwoTone.CastConnected: ImageVector
get() {
if (_castConnected != null) {
return _castConnected!!
}
_castConnected = materialIcon(name = "TwoTone.CastConnected") {
materialPath(fillAlpha = 0.3f, strokeAlpha = 0.3f) {
moveTo(17.0f, 9.0f)
horizontalLineTo(5.95f)
curveToRelative(2.83f, 1.17f, 5.15f, 3.3f, 6.56f, 6.0f)
horizontalLineTo(17.0f)
verticalLineTo(9.0f)
close()
}
materialPath {
moveTo(1.0f, 18.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(3.0f)
curveToRelative(0.0f, -1.66f, -1.34f, -3.0f, -3.0f, -3.0f)
close()
moveTo(1.0f, 14.0f)
verticalLineToRelative(2.0f)
curveToRelative(2.76f, 0.0f, 5.0f, 2.24f, 5.0f, 5.0f)
horizontalLineToRelative(2.0f)
curveToRelative(0.0f, -3.87f, -3.13f, -7.0f, -7.0f, -7.0f)
close()
moveTo(1.0f, 10.0f)
verticalLineToRelative(2.0f)
curveToRelative(4.97f, 0.0f, 9.0f, 4.03f, 9.0f, 9.0f)
horizontalLineToRelative(2.0f)
curveToRelative(0.0f, -6.08f, -4.93f, -11.0f, -11.0f, -11.0f)
close()
moveTo(21.0f, 3.0f)
lineTo(3.0f, 3.0f)
curveToRelative(-1.1f, 0.0f, -2.0f, 0.9f, -2.0f, 2.0f)
verticalLineToRelative(3.0f)
horizontalLineToRelative(2.0f)
lineTo(3.0f, 5.0f)
horizontalLineToRelative(18.0f)
verticalLineToRelative(14.0f)
horizontalLineToRelative(-7.0f)
verticalLineToRelative(2.0f)
horizontalLineToRelative(7.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
lineTo(23.0f, 5.0f)
curveToRelative(0.0f, -1.1f, -0.9f, -2.0f, -2.0f, -2.0f)
close()
moveTo(5.0f, 7.0f)
verticalLineToRelative(1.63f)
curveToRelative(0.32f, 0.1f, 0.63f, 0.24f, 0.95f, 0.37f)
lineTo(17.0f, 9.0f)
verticalLineToRelative(6.0f)
horizontalLineToRelative(-4.49f)
curveToRelative(0.15f, 0.29f, 0.29f, 0.58f, 0.42f, 0.88f)
curveToRelative(0.16f, 0.36f, 0.31f, 0.74f, 0.44f, 1.12f)
lineTo(19.0f, 17.0f)
lineTo(19.0f, 7.0f)
lineTo(5.0f, 7.0f)
close()
}
}
return _castConnected!!
}
private var _castConnected: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy