@konoma-development/react-components 0.2.7 → 0.2.8

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.
@@ -7678,8 +7678,8 @@ function Input$2({
7678
7678
  ref,
7679
7679
  placeholder,
7680
7680
  "data-testid": dataTestId,
7681
- value: value?.toString() || "",
7682
- defaultValue: defaultValue?.toString() || "",
7681
+ value: value?.toString() !== void 0 ? value?.toString() : "",
7682
+ defaultValue: defaultValue?.toString() !== void 0 ? value?.toString() : "",
7683
7683
  onInput: (e) => {
7684
7684
  onChange(e.currentTarget.value);
7685
7685
  },