@hoddy-ui/core 1.0.21 → 1.0.22

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/types.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hoddy-ui/core",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "Core rich react native components written in typescript",
5
5
  "main": "index.ts",
6
6
  "repository": {
package/src/types.ts CHANGED
@@ -102,7 +102,7 @@ export interface ButtonProps {
102
102
 
103
103
  export interface CheckboxProps {
104
104
  color?: colorTypes;
105
- label: ReactNode;
105
+ label?: ReactNode;
106
106
  size: number;
107
107
  checked?: boolean;
108
108
  style?: ViewStyle;