dhre-ui-kit 0.0.125 → 0.0.126
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 -4
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3 -4
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -16,7 +16,6 @@ var reactNativePaper = require('react-native-paper');
|
|
|
16
16
|
var reactNativeElementDropdown = require('react-native-element-dropdown');
|
|
17
17
|
var DocumentPicker = require('react-native-document-picker');
|
|
18
18
|
var RNFS = require('react-native-fs');
|
|
19
|
-
var stylehelper = require('src/utils/stylehelper');
|
|
20
19
|
var Clipboard = require('@react-native-clipboard/clipboard');
|
|
21
20
|
|
|
22
21
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
@@ -4098,9 +4097,9 @@ const CustomSlideButton = ({
|
|
|
4098
4097
|
style: {
|
|
4099
4098
|
...styles$2.button,
|
|
4100
4099
|
backgroundColor: theme.SURFACE_PRIMARY,
|
|
4101
|
-
width:
|
|
4102
|
-
height:
|
|
4103
|
-
borderRadius:
|
|
4100
|
+
width: verticalScale(size),
|
|
4101
|
+
height: verticalScale(size),
|
|
4102
|
+
borderRadius: verticalScale(size / 2)
|
|
4104
4103
|
}
|
|
4105
4104
|
},
|
|
4106
4105
|
icon
|