commonMain.com.softartdev.themepref.icons.SettingsBrightness.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.SettingsBrightness: ImageVector
get() {
if (_settingsBrightness != null) {
return _settingsBrightness!!
}
_settingsBrightness = materialIcon(name = "Filled.SettingsBrightness") {
materialPath {
moveTo(21.0f, 3.0f)
lineTo(3.0f, 3.0f)
curveToRelative(-1.1f, 0.0f, -2.0f, 0.9f, -2.0f, 2.0f)
verticalLineToRelative(14.0f)
curveToRelative(0.0f, 1.1f, 0.9f, 2.0f, 2.0f, 2.0f)
horizontalLineToRelative(18.0f)
curveToRelative(1.1f, 0.0f, 2.0f, -0.9f, 2.0f, -2.0f)
lineTo(23.0f, 5.0f)
curveToRelative(0.0f, -1.1f, -0.9f, -2.0f, -2.0f, -2.0f)
close()
moveTo(21.0f, 19.01f)
lineTo(3.0f, 19.01f)
lineTo(3.0f, 4.99f)
horizontalLineToRelative(18.0f)
verticalLineToRelative(14.02f)
close()
moveTo(8.0f, 16.0f)
horizontalLineToRelative(2.5f)
lineToRelative(1.5f, 1.5f)
lineToRelative(1.5f, -1.5f)
lineTo(16.0f, 16.0f)
verticalLineToRelative(-2.5f)
lineToRelative(1.5f, -1.5f)
lineToRelative(-1.5f, -1.5f)
lineTo(16.0f, 8.0f)
horizontalLineToRelative(-2.5f)
lineTo(12.0f, 6.5f)
lineTo(10.5f, 8.0f)
lineTo(8.0f, 8.0f)
verticalLineToRelative(2.5f)
lineTo(6.5f, 12.0f)
lineTo(8.0f, 13.5f)
lineTo(8.0f, 16.0f)
close()
moveTo(12.0f, 9.0f)
curveToRelative(1.66f, 0.0f, 3.0f, 1.34f, 3.0f, 3.0f)
reflectiveCurveToRelative(-1.34f, 3.0f, -3.0f, 3.0f)
lineTo(12.0f, 9.0f)
close()
}
}
return _settingsBrightness!!
}
private var _settingsBrightness: ImageVector? = null