-
Notifications
You must be signed in to change notification settings - Fork 0
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
43 changed files
with
1,245 additions
and
9 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
43 changes: 43 additions & 0 deletions
43
shared/src/commonMain/kotlin/nl/tiebe/otarium/utils/otariumicons/bottombar/__Grades.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,43 @@ | ||
package nl.tiebe.otarium.utils.otariumicons.bottombar | ||
|
||
import androidx.compose.ui.graphics.vector.ImageVector | ||
import nl.tiebe.otarium.utils.otariumicons.BottombarGroup | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box10Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box10Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box1Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box1Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box2Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box2Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box3Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box3Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box4Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box4Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box5Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box5Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box6Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box6Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box7Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box7Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box8Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box8Outline | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box9Filled | ||
import nl.tiebe.otarium.utils.otariumicons.bottombar.grades.Box9Outline | ||
import kotlin.collections.List as ____KtList | ||
|
||
public object GradesGroup | ||
|
||
public val BottombarGroup.Grades: GradesGroup | ||
get() = GradesGroup | ||
|
||
private var __AllAssets: ____KtList<ImageVector>? = null | ||
|
||
public val GradesGroup.AllAssets: ____KtList<ImageVector> | ||
get() { | ||
if (__AllAssets != null) { | ||
return __AllAssets!! | ||
} | ||
__AllAssets= listOf(Box10Filled, Box10Outline, Box1Filled, Box1Outline, Box2Filled, Box2Outline, | ||
Box3Filled, Box3Outline, Box4Filled, Box4Outline, Box5Filled, Box5Outline, Box6Filled, | ||
Box6Outline, Box7Filled, Box7Outline, Box8Filled, Box8Outline, Box9Filled, Box9Outline) | ||
return __AllAssets!! | ||
} |
61 changes: 61 additions & 0 deletions
61
...src/commonMain/kotlin/nl/tiebe/otarium/utils/otariumicons/bottombar/grades/Box10Filled.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,61 @@ | ||
package nl.tiebe.otarium.utils.otariumicons.bottombar.grades | ||
|
||
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 nl.tiebe.otarium.utils.otariumicons.bottombar.GradesGroup | ||
|
||
public val GradesGroup.Box10Filled: ImageVector | ||
get() { | ||
if (_box10Filled != null) { | ||
return _box10Filled!! | ||
} | ||
_box10Filled = Builder(name = "Box10Filled", 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(14.0f, 9.0f) | ||
horizontalLineTo(16.0f) | ||
verticalLineTo(15.0f) | ||
horizontalLineTo(14.0f) | ||
verticalLineTo(9.0f) | ||
moveTo(21.0f, 5.0f) | ||
verticalLineTo(19.0f) | ||
curveTo(21.0f, 20.11f, 20.11f, 21.0f, 19.0f, 21.0f) | ||
horizontalLineTo(5.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, true, 3.0f, 19.0f) | ||
verticalLineTo(5.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, true, 5.0f, 3.0f) | ||
horizontalLineTo(19.0f) | ||
curveTo(20.11f, 3.0f, 21.0f, 3.9f, 21.0f, 5.0f) | ||
moveTo(10.0f, 7.0f) | ||
horizontalLineTo(6.0f) | ||
verticalLineTo(9.0f) | ||
horizontalLineTo(8.0f) | ||
verticalLineTo(17.0f) | ||
horizontalLineTo(10.0f) | ||
verticalLineTo(7.0f) | ||
moveTo(18.0f, 9.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 16.0f, 7.0f) | ||
horizontalLineTo(14.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 12.0f, 9.0f) | ||
verticalLineTo(15.0f) | ||
curveTo(12.0f, 16.11f, 12.9f, 17.0f, 14.0f, 17.0f) | ||
horizontalLineTo(16.0f) | ||
curveTo(17.11f, 17.0f, 18.0f, 16.11f, 18.0f, 15.0f) | ||
verticalLineTo(9.0f) | ||
close() | ||
} | ||
} | ||
.build() | ||
return _box10Filled!! | ||
} | ||
|
||
private var _box10Filled: ImageVector? = null |
64 changes: 64 additions & 0 deletions
64
...rc/commonMain/kotlin/nl/tiebe/otarium/utils/otariumicons/bottombar/grades/Box10Outline.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,64 @@ | ||
package nl.tiebe.otarium.utils.otariumicons.bottombar.grades | ||
|
||
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 nl.tiebe.otarium.utils.otariumicons.bottombar.GradesGroup | ||
|
||
public val GradesGroup.Box10Outline: ImageVector | ||
get() { | ||
if (_box10Outline != null) { | ||
return _box10Outline!! | ||
} | ||
_box10Outline = Builder(name = "Box10Outline", 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(19.0f, 19.0f) | ||
horizontalLineTo(5.0f) | ||
verticalLineTo(5.0f) | ||
horizontalLineTo(19.0f) | ||
moveTo(19.0f, 3.0f) | ||
horizontalLineTo(5.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 3.0f, 5.0f) | ||
verticalLineTo(19.0f) | ||
curveTo(3.0f, 20.11f, 3.9f, 21.0f, 5.0f, 21.0f) | ||
horizontalLineTo(19.0f) | ||
curveTo(20.11f, 21.0f, 21.0f, 20.11f, 21.0f, 19.0f) | ||
verticalLineTo(5.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 19.0f, 3.0f) | ||
moveTo(8.0f, 17.0f) | ||
horizontalLineTo(10.0f) | ||
verticalLineTo(7.0f) | ||
horizontalLineTo(6.0f) | ||
verticalLineTo(9.0f) | ||
horizontalLineTo(8.0f) | ||
moveTo(14.0f, 7.0f) | ||
horizontalLineTo(16.0f) | ||
curveTo(17.11f, 7.0f, 18.0f, 7.9f, 18.0f, 9.0f) | ||
verticalLineTo(15.0f) | ||
curveTo(18.0f, 16.11f, 17.11f, 17.0f, 16.0f, 17.0f) | ||
horizontalLineTo(14.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, true, 12.0f, 15.0f) | ||
verticalLineTo(9.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, true, 14.0f, 7.0f) | ||
moveTo(14.0f, 9.0f) | ||
verticalLineTo(15.0f) | ||
horizontalLineTo(16.0f) | ||
verticalLineTo(9.0f) | ||
horizontalLineTo(14.0f) | ||
close() | ||
} | ||
} | ||
.build() | ||
return _box10Outline!! | ||
} | ||
|
||
private var _box10Outline: ImageVector? = null |
46 changes: 46 additions & 0 deletions
46
.../src/commonMain/kotlin/nl/tiebe/otarium/utils/otariumicons/bottombar/grades/Box1Filled.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,46 @@ | ||
package nl.tiebe.otarium.utils.otariumicons.bottombar.grades | ||
|
||
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 nl.tiebe.otarium.utils.otariumicons.bottombar.GradesGroup | ||
|
||
public val GradesGroup.Box1Filled: ImageVector | ||
get() { | ||
if (_box1Filled != null) { | ||
return _box1Filled!! | ||
} | ||
_box1Filled = Builder(name = "Box1Filled", 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(14.0f, 17.0f) | ||
horizontalLineTo(12.0f) | ||
verticalLineTo(9.0f) | ||
horizontalLineTo(10.0f) | ||
verticalLineTo(7.0f) | ||
horizontalLineTo(14.0f) | ||
moveTo(19.0f, 3.0f) | ||
horizontalLineTo(5.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 3.0f, 5.0f) | ||
verticalLineTo(19.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 5.0f, 21.0f) | ||
horizontalLineTo(19.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 21.0f, 19.0f) | ||
verticalLineTo(5.0f) | ||
arcTo(2.0f, 2.0f, 0.0f, false, false, 19.0f, 3.0f) | ||
close() | ||
} | ||
} | ||
.build() | ||
return _box1Filled!! | ||
} | ||
|
||
private var _box1Filled: ImageVector? = null |
Oops, something went wrong.