-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
349 additions
and
49 deletions.
There are no files selected for viewing
44 changes: 44 additions & 0 deletions
44
compose/src/commonMain/kotlin/warlockfe/warlock3/compose/icons/Arrow_right.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
package warlockfe.warlock3.compose.icons | ||
|
||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.graphics.PathFillType | ||
import androidx.compose.ui.graphics.SolidColor | ||
import androidx.compose.ui.graphics.StrokeCap | ||
import androidx.compose.ui.graphics.StrokeJoin | ||
import androidx.compose.ui.graphics.vector.ImageVector | ||
import androidx.compose.ui.graphics.vector.path | ||
import androidx.compose.ui.unit.dp | ||
|
||
public val Arrow_right: ImageVector | ||
get() { | ||
if (_Arrow_right != null) { | ||
return _Arrow_right!! | ||
} | ||
_Arrow_right = ImageVector.Builder( | ||
name = "Arrow_right", | ||
defaultWidth = 24.dp, | ||
defaultHeight = 24.dp, | ||
viewportWidth = 960f, | ||
viewportHeight = 960f | ||
).apply { | ||
path( | ||
fill = SolidColor(Color.Black), | ||
fillAlpha = 1.0f, | ||
stroke = null, | ||
strokeAlpha = 1.0f, | ||
strokeLineWidth = 1.0f, | ||
strokeLineCap = StrokeCap.Butt, | ||
strokeLineJoin = StrokeJoin.Miter, | ||
strokeLineMiter = 1.0f, | ||
pathFillType = PathFillType.NonZero | ||
) { | ||
moveTo(400f, 680f) | ||
verticalLineToRelative(-400f) | ||
lineToRelative(200f, 200f) | ||
close() | ||
} | ||
}.build() | ||
return _Arrow_right!! | ||
} | ||
|
||
private var _Arrow_right: ImageVector? = null |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.