dhre-ui-kit 2.0.2 → 2.0.3
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 +5 -3
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +5 -3
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -5350,6 +5350,7 @@ const CustomButton = ({
|
|
|
5350
5350
|
style: [
|
|
5351
5351
|
styles$y.buttonContainer,
|
|
5352
5352
|
containerStyle,
|
|
5353
|
+
{ borderRadius: 0 },
|
|
5353
5354
|
isLoading && {
|
|
5354
5355
|
paddingVertical: verticalScale(22)
|
|
5355
5356
|
},
|
|
@@ -6538,11 +6539,12 @@ const Accordion = ({
|
|
|
6538
6539
|
return /* @__PURE__ */ React__default["default"].createElement(
|
|
6539
6540
|
reactNative.View,
|
|
6540
6541
|
{
|
|
6541
|
-
style: {
|
|
6542
|
+
style: [{
|
|
6542
6543
|
...styles$m.container,
|
|
6543
6544
|
borderBottomColor: theme.BORDER_SEPRATOR,
|
|
6544
|
-
...containerStyle
|
|
6545
|
-
|
|
6545
|
+
...containerStyle,
|
|
6546
|
+
borderRadius: 0
|
|
6547
|
+
}],
|
|
6546
6548
|
testID: testId
|
|
6547
6549
|
},
|
|
6548
6550
|
/* @__PURE__ */ React__default["default"].createElement(
|