commonMain.compose.icons.simpleicons.Googletranslate.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.Googletranslate: ImageVector
get() {
if (_googletranslate != null) {
return _googletranslate!!
}
_googletranslate = Builder(name = "Googletranslate", 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(22.401f, 4.818f)
horizontalLineToRelative(-9.927f)
lineTo(10.927f, 0.0f)
lineTo(1.599f, 0.0f)
curveTo(0.72f, 0.0f, 0.002f, 0.719f, 0.002f, 1.599f)
verticalLineToRelative(16.275f)
curveToRelative(0.0f, 0.878f, 0.72f, 1.597f, 1.597f, 1.597f)
horizontalLineToRelative(10.0f)
lineTo(13.072f, 24.0f)
lineTo(22.4f, 24.0f)
curveToRelative(0.878f, 0.0f, 1.597f, -0.707f, 1.597f, -1.572f)
lineTo(23.997f, 6.39f)
curveToRelative(0.0f, -0.865f, -0.72f, -1.572f, -1.597f, -1.572f)
close()
moveTo(6.741f, 13.498f)
curveToRelative(-2.07f, 0.0f, -3.75f, -1.68f, -3.75f, -3.75f)
curveToRelative(0.0f, -2.07f, 1.68f, -3.75f, 3.75f, -3.75f)
curveToRelative(1.012f, 0.0f, 1.86f, 0.375f, 2.512f, 0.976f)
lineToRelative(-0.99f, 0.952f)
arcToRelative(2.194f, 2.194f, 0.0f, false, false, -1.522f, -0.584f)
curveToRelative(-1.305f, 0.0f, -2.363f, 1.08f, -2.363f, 2.409f)
reflectiveCurveTo(5.436f, 12.16f, 6.74f, 12.16f)
curveToRelative(1.507f, 0.0f, 2.13f, -1.08f, 2.19f, -1.808f)
lineToRelative(-2.188f, -0.002f)
lineTo(6.742f, 9.066f)
horizontalLineToRelative(3.51f)
curveToRelative(0.05f, 0.23f, 0.09f, 0.457f, 0.09f, 0.764f)
curveToRelative(0.0f, 2.147f, -1.434f, 3.669f, -3.602f, 3.669f)
close()
moveTo(23.498f, 22.428f)
curveToRelative(0.0f, 0.59f, -0.492f, 1.072f, -1.097f, 1.072f)
horizontalLineToRelative(-8.875f)
lineToRelative(3.649f, -4.03f)
horizontalLineToRelative(0.005f)
lineToRelative(-0.74f, -2.302f)
lineToRelative(0.006f, -0.005f)
reflectiveCurveToRelative(0.568f, -0.488f, 1.277f, -1.24f)
curveToRelative(0.712f, 0.771f, 1.63f, 1.699f, 2.818f, 2.805f)
lineToRelative(0.771f, -0.772f)
curveToRelative(-1.272f, -1.154f, -2.204f, -2.07f, -2.89f, -2.805f)
curveToRelative(0.919f, -1.087f, 1.852f, -2.455f, 2.049f, -3.707f)
horizontalLineToRelative(2.034f)
verticalLineToRelative(0.002f)
horizontalLineToRelative(0.002f)
verticalLineToRelative(-0.94f)
horizontalLineToRelative(-4.532f)
verticalLineToRelative(-1.52f)
horizontalLineToRelative(-1.471f)
verticalLineToRelative(1.52f)
lineTo(14.3f, 10.506f)
lineToRelative(-1.672f, -5.21f)
lineToRelative(0.006f, 0.022f)
horizontalLineToRelative(9.767f)
curveToRelative(0.605f, 0.0f, 1.097f, 0.48f, 1.097f, 1.072f)
verticalLineToRelative(16.038f)
close()
moveTo(17.014f, 15.117f)
curveToRelative(-0.536f, 0.548f, -0.943f, 0.873f, -0.943f, 0.873f)
lineToRelative(-0.008f, 0.004f)
lineToRelative(-1.46f, -4.548f)
horizontalLineToRelative(4.764f)
curveToRelative(-0.307f, 1.084f, -0.988f, 2.108f, -1.651f, 2.904f)
curveToRelative(-1.176f, -1.392f, -1.18f, -1.844f, -1.18f, -1.844f)
horizontalLineToRelative(-1.222f)
reflectiveCurveToRelative(0.05f, 0.678f, 1.7f, 2.61f)
close()
}
}
.build()
return _googletranslate!!
}
private var _googletranslate: ImageVector? = null