commonMain.compose.icons.tablericons.outline.BrandHackerrank.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tabler-icons Show documentation
Show all versions of tabler-icons Show documentation
Fork of BenjaminHalko's implementation of DevSrSouza's Compose Icons
The newest version!
package compose.icons.tablericons.outline
import androidx.compose.ui.graphics.Color
import androidx.compose.ui.graphics.PathFillType
import androidx.compose.ui.graphics.PathFillType.Companion.NonZero
import androidx.compose.ui.graphics.SolidColor
import androidx.compose.ui.graphics.StrokeCap
import androidx.compose.ui.graphics.StrokeCap.Companion.Round
import androidx.compose.ui.graphics.StrokeJoin
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.tablericons.OutlineGroup
public val OutlineGroup.BrandHackerrank: ImageVector
get() {
if (_brandHackerrank != null) {
return _brandHackerrank!!
}
_brandHackerrank = Builder(name = "BrandHackerrank", defaultWidth = 24.0.dp, defaultHeight =
24.0.dp, viewportWidth = 24.0f, viewportHeight = 24.0f).apply {
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(19.484f, 5.667f)
curveToRelative(-1.146f, -0.904f, -3.35f, -2.394f, -6.497f, -3.429f)
curveToRelative(-0.484f, -0.159f, -0.725f, -0.238f, -1.04f, -0.238f)
curveToRelative(-0.314f, 0.0f, -0.556f, 0.08f, -1.04f, 0.238f)
curveToRelative(-3.147f, 1.035f, -5.35f, 2.525f, -6.496f, 3.43f)
curveToRelative(-0.402f, 0.317f, -0.604f, 0.476f, -0.797f, 0.816f)
curveToRelative(-0.194f, 0.341f, -0.233f, 0.62f, -0.309f, 1.178f)
arcToRelative(33.0f, 33.0f, 0.0f, false, false, -0.305f, 4.338f)
curveToRelative(0.0f, 1.742f, 0.165f, 3.317f, 0.305f, 4.338f)
curveToRelative(0.076f, 0.558f, 0.115f, 0.837f, 0.309f, 1.178f)
curveToRelative(0.193f, 0.34f, 0.395f, 0.5f, 0.797f, 0.817f)
curveToRelative(1.146f, 0.904f, 3.35f, 2.394f, 6.497f, 3.429f)
curveToRelative(0.483f, 0.159f, 0.725f, 0.238f, 1.04f, 0.238f)
curveToRelative(0.314f, 0.0f, 0.555f, -0.08f, 1.04f, -0.238f)
curveToRelative(3.146f, -1.035f, 5.35f, -2.525f, 6.496f, -3.43f)
curveToRelative(0.402f, -0.317f, 0.603f, -0.476f, 0.797f, -0.816f)
curveToRelative(0.194f, -0.341f, 0.232f, -0.62f, 0.309f, -1.178f)
curveToRelative(0.14f, -1.021f, 0.305f, -2.596f, 0.305f, -4.338f)
reflectiveCurveToRelative(-0.165f, -3.317f, -0.305f, -4.338f)
curveToRelative(-0.077f, -0.558f, -0.115f, -0.837f, -0.309f, -1.178f)
reflectiveCurveToRelative(-0.395f, -0.5f, -0.797f, -0.817f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(9.0f, 8.0f)
verticalLineToRelative(7.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(9.0f, 12.0f)
horizontalLineToRelative(6.0f)
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(16.0f, 16.0f)
horizontalLineToRelative(-2.0f)
lineToRelative(1.0f, 1.0f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(8.0f, 8.0f)
horizontalLineToRelative(2.0f)
lineToRelative(-1.0f, -1.0f)
close()
}
path(fill = SolidColor(Color(0x00000000)), stroke = SolidColor(Color(0xFF000000)),
strokeLineWidth = 2.0f, strokeLineCap = Round, strokeLineJoin =
StrokeJoin.Companion.Round, strokeLineMiter = 4.0f, pathFillType = NonZero) {
moveTo(15.0f, 9.0f)
verticalLineToRelative(7.0f)
}
}
.build()
return _brandHackerrank!!
}
private var _brandHackerrank: ImageVector? = null