react-native-boxes 1.3.17 → 1.3.18

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Button.tsx +3 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-boxes",
3
- "version": "1.3.17",
3
+ "version": "1.3.18",
4
4
  "description": "A react native library for rapid development of UI using boxes",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
package/src/Button.tsx CHANGED
@@ -48,7 +48,7 @@ export function TransparentButton(props: TextProps & TouchableHighlightProps
48
48
  alignContent: 'center',
49
49
  alignItems: 'center',
50
50
  padding: theme.dimens.space.md,
51
- borderRadius: theme.dimens.space.xl,
51
+ borderRadius: theme.dimens.space.md,
52
52
  margin: theme.dimens.space.sm,
53
53
  backgroundColor: theme.colors.transparent,
54
54
  }, props.style]}>
@@ -116,7 +116,7 @@ export function ButtonView(props: ButtonViewProps) {
116
116
  alignContent: 'center',
117
117
  alignItems: 'center',
118
118
  padding: theme.dimens.space.md,
119
- borderRadius: theme.dimens.space.xl,
119
+ borderRadius: theme.dimens.space.md,
120
120
  margin: theme.dimens.space.sm,
121
121
  backgroundColor: theme.colors.accent,
122
122
  }, props.style]}>
@@ -190,7 +190,7 @@ export function RightIconButton(props: ButtonViewProps) {
190
190
  alignContent: 'center',
191
191
  alignItems: 'center',
192
192
  padding: theme.dimens.space.md,
193
- borderRadius: theme.dimens.space.xl,
193
+ borderRadius: theme.dimens.space.md,
194
194
  margin: theme.dimens.space.sm,
195
195
  backgroundColor: theme.colors.accent,
196
196
  }, props.style]}>