commonMain.androidx.compose.material.icons.rounded.History.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.History: ImageVector
get() {
if (_history != null) {
return _history!!
}
_history = materialIcon(name = "Rounded.History") {
materialPath {
moveTo(13.26f, 3.0f)
curveTo(8.17f, 2.86f, 4.0f, 6.95f, 4.0f, 12.0f)
lineTo(2.21f, 12.0f)
curveToRelative(-0.45f, 0.0f, -0.67f, 0.54f, -0.35f, 0.85f)
lineToRelative(2.79f, 2.8f)
curveToRelative(0.2f, 0.2f, 0.51f, 0.2f, 0.71f, 0.0f)
lineToRelative(2.79f, -2.8f)
curveToRelative(0.31f, -0.31f, 0.09f, -0.85f, -0.36f, -0.85f)
lineTo(6.0f, 12.0f)
curveToRelative(0.0f, -3.9f, 3.18f, -7.05f, 7.1f, -7.0f)
curveToRelative(3.72f, 0.05f, 6.85f, 3.18f, 6.9f, 6.9f)
curveToRelative(0.05f, 3.91f, -3.1f, 7.1f, -7.0f, 7.1f)
curveToRelative(-1.61f, 0.0f, -3.1f, -0.55f, -4.28f, -1.48f)
curveToRelative(-0.4f, -0.31f, -0.96f, -0.28f, -1.32f, 0.08f)
curveToRelative(-0.42f, 0.42f, -0.39f, 1.13f, 0.08f, 1.49f)
curveTo(9.0f, 20.29f, 10.91f, 21.0f, 13.0f, 21.0f)
curveToRelative(5.05f, 0.0f, 9.14f, -4.17f, 9.0f, -9.26f)
curveToRelative(-0.13f, -4.69f, -4.05f, -8.61f, -8.74f, -8.74f)
close()
moveTo(12.75f, 8.0f)
curveToRelative(-0.41f, 0.0f, -0.75f, 0.34f, -0.75f, 0.75f)
verticalLineToRelative(3.68f)
curveToRelative(0.0f, 0.35f, 0.19f, 0.68f, 0.49f, 0.86f)
lineToRelative(3.12f, 1.85f)
curveToRelative(0.36f, 0.21f, 0.82f, 0.09f, 1.03f, -0.26f)
curveToRelative(0.21f, -0.36f, 0.09f, -0.82f, -0.26f, -1.03f)
lineToRelative(-2.88f, -1.71f)
verticalLineToRelative(-3.4f)
curveToRelative(0.0f, -0.4f, -0.34f, -0.74f, -0.75f, -0.74f)
close()
}
}
return _history!!
}
private var _history: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy