commonMain.com.softartdev.themepref.icons.Brightness4.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of material-theme-prefs Show documentation
Show all versions of material-theme-prefs Show documentation
Kotlin Multiplatform library for easy switching Dark/Light Material themes on Compose.
//TODO use from compose.materialIconsExtended after release for ios-targets
package com.softartdev.themepref.icons
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.Filled.Brightness4: ImageVector
get() {
if (_brightness4 != null) {
return _brightness4!!
}
_brightness4 = materialIcon(name = "Filled.Brightness4") {
materialPath {
moveTo(20.0f, 8.69f)
verticalLineTo(4.0f)
horizontalLineToRelative(-4.69f)
lineTo(12.0f, 0.69f)
lineTo(8.69f, 4.0f)
horizontalLineTo(4.0f)
verticalLineToRelative(4.69f)
lineTo(0.69f, 12.0f)
lineTo(4.0f, 15.31f)
verticalLineTo(20.0f)
horizontalLineToRelative(4.69f)
lineTo(12.0f, 23.31f)
lineTo(15.31f, 20.0f)
horizontalLineTo(20.0f)
verticalLineToRelative(-4.69f)
lineTo(23.31f, 12.0f)
lineTo(20.0f, 8.69f)
close()
moveTo(12.0f, 18.0f)
curveToRelative(-0.89f, 0.0f, -1.74f, -0.2f, -2.5f, -0.55f)
curveTo(11.56f, 16.5f, 13.0f, 14.42f, 13.0f, 12.0f)
reflectiveCurveToRelative(-1.44f, -4.5f, -3.5f, -5.45f)
curveTo(10.26f, 6.2f, 11.11f, 6.0f, 12.0f, 6.0f)
curveToRelative(3.31f, 0.0f, 6.0f, 2.69f, 6.0f, 6.0f)
reflectiveCurveToRelative(-2.69f, 6.0f, -6.0f, 6.0f)
close()
}
}
return _brightness4!!
}
private var _brightness4: ImageVector? = null