![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.compose.icons.simpleicons.Googlepodcasts.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.Googlepodcasts: ImageVector
get() {
if (_googlepodcasts != null) {
return _googlepodcasts!!
}
_googlepodcasts = Builder(name = "Googlepodcasts", 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.503f, 9.678f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(1.63f)
arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f)
verticalLineToRelative(-1.63f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
moveTo(22.497f, 9.678f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(1.63f)
arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f)
verticalLineToRelative(-1.63f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
moveTo(6.68f, 14.587f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(1.63f)
arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f)
verticalLineToRelative(-1.62f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
moveTo(6.68f, 4.77f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(5.357f)
arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f)
lineTo(8.18f, 6.258f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
moveTo(17.318f, 4.77f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(1.64f)
arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f)
lineTo(18.818f, 6.27f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
moveTo(12.0f, 0.0f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(1.63f)
arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.0f)
lineTo(13.5f, 1.5f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.499f, -1.5f, -1.499f)
close()
moveTo(12.0f, 19.355f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.67f, -1.5f, 1.5f)
verticalLineToRelative(1.64f)
arcToRelative(1.5f, 1.5f, 0.0f, true, false, 3.0f, 0.01f)
verticalLineToRelative(-1.64f)
curveToRelative(0.0f, -0.82f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
moveTo(17.319f, 10.898f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.68f, -1.5f, 1.5f)
verticalLineToRelative(5.328f)
arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f)
verticalLineToRelative(-5.329f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
moveTo(12.0f, 6.128f)
curveToRelative(-0.83f, 0.0f, -1.5f, 0.68f, -1.5f, 1.5f)
verticalLineToRelative(8.728f)
arcToRelative(1.5f, 1.5f, 0.0f, false, false, 3.0f, 0.0f)
lineTo(13.5f, 7.638f)
curveToRelative(0.0f, -0.83f, -0.67f, -1.5f, -1.5f, -1.5f)
close()
}
}
.build()
return _googlepodcasts!!
}
private var _googlepodcasts: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy