react-crud-mobile 1.0.699 → 1.0.700

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.699",
2
+ "version": "1.0.700",
3
3
  "license": "MIT",
4
4
  "description": "Uma biblioteca de componentes para React Native",
5
5
  "main": "dist/index.js",
@@ -17,8 +17,6 @@ export default function UIButton(props: ChildType) {
17
17
  color: '#ffffff',
18
18
  fontWeight: '500',
19
19
  fontSize: 16,
20
- paddingRight: 10,
21
- paddingLeft: 10,
22
20
  },
23
21
  buttonInner: {
24
22
  flexDirection: 'row',
@@ -53,12 +51,10 @@ export default function UIButton(props: ChildType) {
53
51
 
54
52
  let extra: any = {};
55
53
 
56
- if (!label) {
57
- extra.button = { width: 'auto' };
58
- extra.icon = { padding: 5 };
59
- } else if (icon) {
54
+ if (icon) {
60
55
  extra.button = { padding: 0 };
61
56
  }
57
+
62
58
  let buttonStyle = Utils.call(() => {
63
59
  let css = style('button', extra.button);
64
60