dhre-ui-kit 0.0.342 → 0.0.344
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +3 -2
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -799,7 +799,8 @@ const createStyles$3 = (theme) => {
|
|
|
799
799
|
width: 80,
|
|
800
800
|
height: 80,
|
|
801
801
|
justifyContent: "center",
|
|
802
|
-
alignItems: "center"
|
|
802
|
+
alignItems: "center",
|
|
803
|
+
backgroundColor: "red"
|
|
803
804
|
},
|
|
804
805
|
text: {
|
|
805
806
|
marginTop: 16,
|
|
@@ -2024,7 +2025,7 @@ const CustomLoader = ({ loading }) => {
|
|
|
2024
2025
|
LottieView__default["default"],
|
|
2025
2026
|
{
|
|
2026
2027
|
style: styles.loader,
|
|
2027
|
-
source: mode === "dark" ?
|
|
2028
|
+
source: mode === "dark" ? LOADER_LIGHT : LOADER_DARK,
|
|
2028
2029
|
autoPlay: true,
|
|
2029
2030
|
loop: true
|
|
2030
2031
|
}
|