-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: lauthieb <lauthieb@users.noreply.github.com>
- Loading branch information
1 parent
84098f1
commit da8d69a
Showing
491 changed files
with
1,757 additions
and
1,427 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package com.decathlon.vitamin.compose.vitaminicons.fill | ||
|
||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd | ||
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.Butt | ||
import androidx.compose.ui.graphics.StrokeJoin | ||
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 com.decathlon.vitamin.compose.vitaminicons.FillGroup | ||
|
||
public val FillGroup.LoyaltyCard: ImageVector | ||
get() { | ||
if (_loyaltyCard != null) { | ||
return _loyaltyCard!! | ||
} | ||
_loyaltyCard = Builder(name = "LoyaltyCard", 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 = EvenOdd) { | ||
moveTo(3.0f, 3.0f) | ||
curveTo(2.4477f, 3.0f, 2.0f, 3.4477f, 2.0f, 4.0f) | ||
verticalLineTo(15.6907f) | ||
lineTo(22.0f, 10.2361f) | ||
verticalLineTo(4.0f) | ||
curveTo(22.0f, 3.4477f, 21.5523f, 3.0f, 21.0f, 3.0f) | ||
horizontalLineTo(3.0f) | ||
close() | ||
moveTo(5.0f, 10.0f) | ||
verticalLineTo(6.0f) | ||
horizontalLineTo(7.0f) | ||
verticalLineTo(10.0f) | ||
horizontalLineTo(5.0f) | ||
close() | ||
moveTo(9.0f, 6.0f) | ||
verticalLineTo(10.0f) | ||
horizontalLineTo(11.0f) | ||
verticalLineTo(6.0f) | ||
horizontalLineTo(9.0f) | ||
close() | ||
moveTo(11.5f, 10.0f) | ||
verticalLineTo(6.0f) | ||
horizontalLineTo(12.5f) | ||
verticalLineTo(10.0f) | ||
horizontalLineTo(11.5f) | ||
close() | ||
moveTo(7.5f, 6.0f) | ||
verticalLineTo(10.0f) | ||
horizontalLineTo(8.5f) | ||
verticalLineTo(6.0f) | ||
horizontalLineTo(7.5f) | ||
close() | ||
} | ||
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f, | ||
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f, | ||
pathFillType = NonZero) { | ||
moveTo(22.0f, 12.3092f) | ||
lineTo(2.0f, 17.7637f) | ||
verticalLineTo(20.0f) | ||
curveTo(2.0f, 20.5523f, 2.4477f, 21.0f, 3.0f, 21.0f) | ||
horizontalLineTo(21.0f) | ||
curveTo(21.5523f, 21.0f, 22.0f, 20.5523f, 22.0f, 20.0f) | ||
verticalLineTo(12.3092f) | ||
close() | ||
} | ||
} | ||
.build() | ||
return _loyaltyCard!! | ||
} | ||
|
||
private var _loyaltyCard: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
package com.decathlon.vitamin.compose.vitaminicons.line | ||
|
||
import androidx.compose.ui.graphics.Color | ||
import androidx.compose.ui.graphics.PathFillType | ||
import androidx.compose.ui.graphics.PathFillType.Companion.EvenOdd | ||
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.Butt | ||
import androidx.compose.ui.graphics.StrokeJoin | ||
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 com.decathlon.vitamin.compose.vitaminicons.LineGroup | ||
|
||
public val LineGroup.LoyaltyCard: ImageVector | ||
get() { | ||
if (_loyaltyCard != null) { | ||
return _loyaltyCard!! | ||
} | ||
_loyaltyCard = Builder(name = "LoyaltyCard", 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(6.0f, 7.0f) | ||
verticalLineTo(11.0f) | ||
horizontalLineTo(8.0f) | ||
verticalLineTo(7.0f) | ||
horizontalLineTo(6.0f) | ||
close() | ||
} | ||
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f, | ||
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f, | ||
pathFillType = NonZero) { | ||
moveTo(10.0f, 11.0f) | ||
verticalLineTo(7.0f) | ||
horizontalLineTo(12.0f) | ||
verticalLineTo(11.0f) | ||
horizontalLineTo(10.0f) | ||
close() | ||
} | ||
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f, | ||
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f, | ||
pathFillType = NonZero) { | ||
moveTo(12.5f, 7.0f) | ||
verticalLineTo(11.0f) | ||
horizontalLineTo(13.5f) | ||
verticalLineTo(7.0f) | ||
horizontalLineTo(12.5f) | ||
close() | ||
} | ||
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f, | ||
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f, | ||
pathFillType = NonZero) { | ||
moveTo(8.5f, 11.0f) | ||
verticalLineTo(7.0f) | ||
horizontalLineTo(9.5f) | ||
verticalLineTo(11.0f) | ||
horizontalLineTo(8.5f) | ||
close() | ||
} | ||
path(fill = SolidColor(Color(0xFF000000)), stroke = null, strokeLineWidth = 0.0f, | ||
strokeLineCap = Butt, strokeLineJoin = Miter, strokeLineMiter = 4.0f, | ||
pathFillType = EvenOdd) { | ||
moveTo(3.0f, 3.0f) | ||
curveTo(2.4477f, 3.0f, 2.0f, 3.4477f, 2.0f, 4.0f) | ||
verticalLineTo(20.0f) | ||
curveTo(2.0f, 20.5523f, 2.4477f, 21.0f, 3.0f, 21.0f) | ||
horizontalLineTo(21.0f) | ||
curveTo(21.5523f, 21.0f, 22.0f, 20.5523f, 22.0f, 20.0f) | ||
verticalLineTo(4.0f) | ||
curveTo(22.0f, 3.4477f, 21.5523f, 3.0f, 21.0f, 3.0f) | ||
horizontalLineTo(3.0f) | ||
close() | ||
moveTo(4.0f, 15.1454f) | ||
verticalLineTo(5.0f) | ||
horizontalLineTo(20.0f) | ||
verticalLineTo(10.7817f) | ||
lineTo(4.0f, 15.1454f) | ||
close() | ||
moveTo(4.0f, 17.2184f) | ||
verticalLineTo(19.0f) | ||
horizontalLineTo(20.0f) | ||
verticalLineTo(12.8548f) | ||
lineTo(4.0f, 17.2184f) | ||
close() | ||
} | ||
} | ||
.build() | ||
return _loyaltyCard!! | ||
} | ||
|
||
private var _loyaltyCard: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<selector xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<item android:drawable="@drawable/ic_vtmn_loyalty_card_fill" android:state_checked="true"/> | ||
<item android:drawable="@drawable/ic_vtmn_loyalty_card_line" android:state_checked="false"/> | ||
</selector> |
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,14 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?attr/colorControlNormal"> | ||
<path | ||
android:fillColor="#FF000000" | ||
android:fillType="evenOdd" | ||
android:pathData="M3 3C2.45 3 2 3.45 2 4V15.69L22 10.24V4C22 3.45 21.55 3 21 3H3ZM5 10V6H7V10H5ZM9 6V10H11V6H9ZM11.5 10V6H12.5V10H11.5ZM7.5 6V10H8.5V6H7.5Z"/> | ||
<path | ||
android:fillColor="#FF000000" | ||
android:pathData="M22 12.31L2 17.76V20C2 20.55 2.45 21 3 21H21C21.55 21 22 20.55 22 20V12.31Z"/> | ||
</vector> |
Oops, something went wrong.