@hoddy-ui/core 2.5.2 → 2.5.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hoddy-ui/core",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "description": "Core rich react native components written in typescript",
5
5
  "main": "index.ts",
6
6
  "repository": {
@@ -131,7 +131,7 @@ const Button: React.FC<ButtonProps> = forwardRef(
131
131
  borderRadius: rounded ? 30 : 10,
132
132
  elevation: variant === "text" ? 0 : elevation,
133
133
  paddingVertical:
134
- size === "small" ? 8 : size === "large" ? "15@ms" : "13@ms",
134
+ size === "small" ? 8 : size === "large" ? "15@mvs" : "13@mvs",
135
135
  paddingHorizontal: size === "small" ? "10@ms" : "18@ms",
136
136
  borderColor: colors[color].main,
137
137
  borderWidth: variant === "outlined" ? 1 : 0,
@@ -155,7 +155,7 @@ const Button: React.FC<ButtonProps> = forwardRef(
155
155
  variant === "text" || variant === "outlined" ? "main" : "text"
156
156
  ],
157
157
  fontWeight: variant === "outlined" ? "700" : "500",
158
- fontSize: size === "small" ? "12@ms" : "14@ms",
158
+ fontSize: size === "small" ? "12@ms" : "13@ms",
159
159
  fontFamily: getConfig().DEFAULT_FONT_FAMILY || "System",
160
160
  },
161
161
  });