commonMain.compose.icons.simpleicons.Pexels.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-icons Show documentation
Show all versions of simple-icons Show documentation
Compose icons is a set of open source icons packs for Compose Multiplatform
The newest version!
package compose.icons.simpleicons
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
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.SimpleIcons
public val SimpleIcons.Pexels: ImageVector
get() {
if (_pexels != null) {
return _pexels!!
}
_pexels = Builder(name = "Pexels", 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 = NonZero) {
moveTo(1.5f, 0.0f)
arcTo(1.5f, 1.5f, 0.0f, false, false, 0.0f, 1.5f)
verticalLineToRelative(21.0f)
arcTo(1.5f, 1.5f, 0.0f, false, false, 1.5f, 24.0f)
horizontalLineToRelative(21.0f)
arcToRelative(1.5f, 1.5f, 0.0f, false, false, 1.5f, -1.5f)
verticalLineToRelative(-21.0f)
arcTo(1.5f, 1.5f, 0.0f, false, false, 22.5f, 0.0f)
horizontalLineToRelative(-21.0f)
close()
moveTo(8.25f, 6.75f)
horizontalLineToRelative(5.272f)
arcToRelative(3.843f, 3.843f, 0.0f, false, true, 0.627f, 7.635f)
lineTo(14.148f, 17.25f)
lineTo(8.25f, 17.25f)
lineTo(8.25f, 6.75f)
close()
moveTo(9.75f, 8.25f)
verticalLineToRelative(7.5f)
horizontalLineToRelative(2.898f)
verticalLineToRelative(-2.815f)
horizontalLineToRelative(0.873f)
arcToRelative(2.343f, 2.343f, 0.0f, true, false, 0.0f, -4.686f)
lineTo(9.75f, 8.25f)
close()
}
}
.build()
return _pexels!!
}
private var _pexels: ImageVector? = null