dhre-ui-kit 0.0.346 → 0.0.347
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 +2 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +2 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -785,6 +785,7 @@ const createStyles$3 = (theme) => {
|
|
|
785
785
|
box: {
|
|
786
786
|
width: 148,
|
|
787
787
|
height: 187,
|
|
788
|
+
backgroundColor: theme.SURFACE_PRIMARY,
|
|
788
789
|
borderRadius: 16,
|
|
789
790
|
justifyContent: "center",
|
|
790
791
|
alignItems: "center",
|
|
@@ -2014,10 +2015,7 @@ const LOADER_LIGHT = {
|
|
|
2014
2015
|
markers: []
|
|
2015
2016
|
};
|
|
2016
2017
|
|
|
2017
|
-
const CustomLoader = ({
|
|
2018
|
-
loading,
|
|
2019
|
-
loadingText = "Loading..."
|
|
2020
|
-
}) => {
|
|
2018
|
+
const CustomLoader = ({ loading }) => {
|
|
2021
2019
|
const { theme, mode } = useTheme();
|
|
2022
2020
|
const styles = createStyles$3(theme);
|
|
2023
2021
|
if (!loading) return null;
|