![JAR search and dependency download from the Maven repository](/logo.png)
commonMain.compose.icons.simpleicons.Codesandbox.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.Codesandbox: ImageVector
get() {
if (_codesandbox != null) {
return _codesandbox!!
}
_codesandbox = Builder(name = "Codesandbox", 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, 6.0f)
lineToRelative(10.455f, -6.0f)
lineTo(22.41f, 6.0f)
lineToRelative(0.09f, 11.95f)
lineTo(11.955f, 24.0f)
lineTo(1.5f, 18.0f)
close()
moveTo(3.588f, 8.481f)
verticalLineToRelative(4.757f)
lineToRelative(3.345f, 1.86f)
verticalLineToRelative(3.516f)
lineToRelative(3.972f, 2.296f)
verticalLineToRelative(-8.272f)
close()
moveTo(20.327f, 8.481f)
lineToRelative(-7.317f, 4.157f)
verticalLineToRelative(8.272f)
lineToRelative(3.972f, -2.296f)
lineTo(16.982f, 15.1f)
lineToRelative(3.345f, -1.861f)
lineTo(20.327f, 8.48f)
close()
moveTo(4.634f, 6.601f)
lineToRelative(7.303f, 4.144f)
lineToRelative(7.32f, -4.18f)
lineToRelative(-3.871f, -2.197f)
lineToRelative(-3.41f, 1.945f)
lineToRelative(-3.43f, -1.968f)
lineTo(4.633f, 6.6f)
close()
}
}
.build()
return _codesandbox!!
}
private var _codesandbox: ImageVector? = null
© 2015 - 2025 Weber Informatics LLC | Privacy Policy