commonMain.compose.icons.cssggicons.Bell.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of css-gg-desktop Show documentation
Show all versions of css-gg-desktop Show documentation
Compose icons is a set of open source icons packs for Compose Multiplatform
The newest version!
package compose.icons.cssggicons
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap.Companion.Butt
import androidx.compose.ui.graphics.StrokeJoin.Companion.Miter
import androidx.compose.ui.graphics.vector.ImageVector
import androidx.compose.ui.graphics.vector.ImageVector.Builder
import androidx.compose.ui.graphics.vector.path
import androidx.compose.ui.unit.dp
import compose.icons.CssGgIcons
public val CssGgIcons.Bell: ImageVector
get() {
if (_bell != null) {
return _bell!!
}
_bell = Builder(name = "Bell", defaultWidth = 24.0.dp, defaultHeight = 24.0.dp,
viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f,
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f,
pathFillType = EvenOdd) {
moveTo(14.0f, 3.0f)
verticalLineTo(3.29f)
curveTo(16.892f, 4.15f, 19.0f, 6.829f, 19.0f, 10.0f)
verticalLineTo(17.0f)
horizontalLineTo(20.0f)
verticalLineTo(19.0f)
horizontalLineTo(4.0f)
verticalLineTo(17.0f)
horizontalLineTo(5.0f)
verticalLineTo(10.0f)
curveTo(5.0f, 6.829f, 7.109f, 4.15f, 10.0f, 3.29f)
verticalLineTo(3.0f)
curveTo(10.0f, 1.895f, 10.895f, 1.0f, 12.0f, 1.0f)
curveTo(13.105f, 1.0f, 14.0f, 1.895f, 14.0f, 3.0f)
close()
moveTo(7.0f, 17.0f)
horizontalLineTo(17.0f)
verticalLineTo(10.0f)
curveTo(17.0f, 7.239f, 14.761f, 5.0f, 12.0f, 5.0f)
curveTo(9.239f, 5.0f, 7.0f, 7.239f, 7.0f, 10.0f)
verticalLineTo(17.0f)
close()
moveTo(14.0f, 21.0f)
verticalLineTo(20.0f)
horizontalLineTo(10.0f)
verticalLineTo(21.0f)
curveTo(10.0f, 22.105f, 10.895f, 23.0f, 12.0f, 23.0f)
curveTo(13.105f, 23.0f, 14.0f, 22.105f, 14.0f, 21.0f)
close()
}
}
.build()
return _bell!!
}
private var _bell: ImageVector? = null