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.mjs
CHANGED
|
@@ -5314,6 +5314,7 @@ const CustomButton = ({
|
|
|
5314
5314
|
style: [
|
|
5315
5315
|
styles$y.buttonContainer,
|
|
5316
5316
|
containerStyle,
|
|
5317
|
+
{ borderRadius: 0 },
|
|
5317
5318
|
isLoading && {
|
|
5318
5319
|
paddingVertical: verticalScale(22)
|
|
5319
5320
|
},
|
|
@@ -6502,11 +6503,12 @@ const Accordion = ({
|
|
|
6502
6503
|
return /* @__PURE__ */ React.createElement(
|
|
6503
6504
|
View,
|
|
6504
6505
|
{
|
|
6505
|
-
style: {
|
|
6506
|
+
style: [{
|
|
6506
6507
|
...styles$m.container,
|
|
6507
6508
|
borderBottomColor: theme.BORDER_SEPRATOR,
|
|
6508
|
-
...containerStyle
|
|
6509
|
-
|
|
6509
|
+
...containerStyle,
|
|
6510
|
+
borderRadius: 0
|
|
6511
|
+
}],
|
|
6510
6512
|
testID: testId
|
|
6511
6513
|
},
|
|
6512
6514
|
/* @__PURE__ */ React.createElement(
|