
commonMain.androidx.compose.material.icons.rounded.PlayCircle.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.PlayCircle: ImageVector
get() {
if (_playCircle != null) {
return _playCircle!!
}
_playCircle = materialIcon(name = "Rounded.PlayCircle") {
materialPath {
moveTo(12.0f, 2.0f)
curveTo(6.48f, 2.0f, 2.0f, 6.48f, 2.0f, 12.0f)
reflectiveCurveToRelative(4.48f, 10.0f, 10.0f, 10.0f)
reflectiveCurveToRelative(10.0f, -4.48f, 10.0f, -10.0f)
reflectiveCurveTo(17.52f, 2.0f, 12.0f, 2.0f)
close()
moveTo(9.5f, 14.67f)
verticalLineTo(9.33f)
curveToRelative(0.0f, -0.79f, 0.88f, -1.27f, 1.54f, -0.84f)
lineToRelative(4.15f, 2.67f)
curveToRelative(0.61f, 0.39f, 0.61f, 1.29f, 0.0f, 1.68f)
lineToRelative(-4.15f, 2.67f)
curveTo(10.38f, 15.94f, 9.5f, 15.46f, 9.5f, 14.67f)
close()
}
}
return _playCircle!!
}
private var _playCircle: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy