commonMain.androidx.compose.material.icons.rounded.ArtTrack.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.ArtTrack: ImageVector
get() {
if (_artTrack != null) {
return _artTrack!!
}
_artTrack = materialIcon(name = "Rounded.ArtTrack") {
materialPath {
moveTo(21.0f, 13.0f)
horizontalLineToRelative(-6.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, -0.45f, -1.0f, -1.0f)
reflectiveCurveToRelative(0.45f, -1.0f, 1.0f, -1.0f)
horizontalLineToRelative(6.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(21.0f, 7.0f)
horizontalLineToRelative(-6.0f)
curveToRelative(-0.55f, 0.0f, -1.0f, 0.45f, -1.0f, 1.0f)
reflectiveCurveToRelative(0.45f, 1.0f, 1.0f, 1.0f)
horizontalLineToRelative(6.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(15.0f, 17.0f)
horizontalLineToRelative(6.0f)
curveToRelative(0.55f, 0.0f, 1.0f, -0.45f, 1.0f, -1.0f)
reflectiveCurveToRelative(-0.45f, -1.0f, -1.0f, -1.0f)
horizontalLineToRelative(-6.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(12.0f, 9.0f)
verticalLineToRelative(6.0f)
curveToRelative(0.0f, 1.1f, -0.9f, 2.0f, -2.0f, 2.0f)
lineTo(4.0f, 17.0f)
curveToRelative(-1.1f, 0.0f, -2.0f, -0.9f, -2.0f, -2.0f)
lineTo(2.0f, 9.0f)
curveToRelative(0.0f, -1.1f, 0.9f, -2.0f, 2.0f, -2.0f)
horizontalLineToRelative(6.0f)
curveToRelative(1.1f, 0.0f, 2.0f, 0.9f, 2.0f, 2.0f)
close()
moveTo(9.9f, 14.2f)
lineToRelative(-1.26f, -1.68f)
curveToRelative(-0.2f, -0.26f, -0.59f, -0.27f, -0.8f, -0.01f)
lineTo(6.5f, 14.26f)
lineToRelative(-0.85f, -1.03f)
curveToRelative(-0.2f, -0.25f, -0.58f, -0.24f, -0.78f, 0.01f)
lineToRelative(-0.74f, 0.95f)
curveToRelative(-0.26f, 0.33f, -0.02f, 0.81f, 0.39f, 0.81f)
lineTo(9.5f, 15.0f)
curveToRelative(0.41f, 0.0f, 0.65f, -0.47f, 0.4f, -0.8f)
close()
}
}
return _artTrack!!
}
private var _artTrack: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy