commonMain.androidx.compose.material.icons.rounded.RunCircle.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.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.RunCircle: ImageVector
get() {
if (_runCircle != null) {
return _runCircle!!
}
_runCircle = materialIcon(name = "Rounded.RunCircle") {
materialPath {
moveTo(12.0f, 2.0f)
curveTo(6.48f, 2.0f, 2.0f, 6.48f, 2.0f, 12.0f)
curveToRelative(0.0f, 5.52f, 4.48f, 10.0f, 10.0f, 10.0f)
reflectiveCurveToRelative(10.0f, -4.48f, 10.0f, -10.0f)
curveTo(22.0f, 6.48f, 17.52f, 2.0f, 12.0f, 2.0f)
close()
moveTo(13.5f, 6.0f)
curveToRelative(0.55f, 0.0f, 1.0f, 0.45f, 1.0f, 1.0f)
curveToRelative(0.0f, 0.55f, -0.45f, 1.0f, -1.0f, 1.0f)
reflectiveCurveToRelative(-1.0f, -0.45f, -1.0f, -1.0f)
curveTo(12.5f, 6.45f, 12.95f, 6.0f, 13.5f, 6.0f)
close()
moveTo(15.41f, 11.91f)
curveToRelative(-0.71f, -0.2f, -1.63f, -0.74f, -2.32f, -1.66f)
lineToRelative(-0.41f, 2.35f)
lineToRelative(1.19f, 1.3f)
curveTo(13.95f, 13.98f, 14.0f, 14.1f, 14.0f, 14.22f)
verticalLineToRelative(3.28f)
curveToRelative(0.0f, 0.28f, -0.22f, 0.5f, -0.5f, 0.5f)
horizontalLineToRelative(0.0f)
curveToRelative(-0.28f, 0.0f, -0.5f, -0.22f, -0.5f, -0.5f)
verticalLineToRelative(-3.08f)
lineToRelative(-1.11f, -1.21f)
lineToRelative(-0.43f, 2.15f)
curveToRelative(-0.05f, 0.27f, -0.32f, 0.45f, -0.59f, 0.39f)
lineToRelative(-2.78f, -0.57f)
curveToRelative(-0.27f, -0.06f, -0.45f, -0.32f, -0.39f, -0.59f)
verticalLineToRelative(0.0f)
curveToRelative(0.06f, -0.27f, 0.32f, -0.44f, 0.59f, -0.39f)
lineToRelative(2.29f, 0.47f)
lineToRelative(0.96f, -4.89f)
lineTo(10.0f, 10.35f)
verticalLineToRelative(1.15f)
curveToRelative(0.0f, 0.28f, -0.22f, 0.5f, -0.5f, 0.5f)
horizontalLineToRelative(0.0f)
curveTo(9.22f, 12.0f, 9.0f, 11.78f, 9.0f, 11.5f)
verticalLineTo(10.0f)
curveToRelative(0.0f, -0.21f, 0.13f, -0.4f, 0.33f, -0.47f)
lineToRelative(2.95f, -1.09f)
curveToRelative(0.49f, -0.18f, 1.02f, 0.04f, 1.25f, 0.51f)
curveToRelative(0.65f, 1.35f, 1.55f, 1.85f, 2.1f, 2.0f)
curveTo(15.85f, 11.0f, 16.0f, 11.18f, 16.0f, 11.4f)
verticalLineToRelative(0.04f)
curveTo(16.0f, 11.75f, 15.71f, 11.99f, 15.41f, 11.91f)
close()
}
}
return _runCircle!!
}
private var _runCircle: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy