@sarunyu/system-one 4.6.5 → 4.7.1

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/dist/index.js CHANGED
@@ -3601,11 +3601,19 @@ const Input = forwardRef(function Input2({
3601
3601
  isDisabled ? "cursor-not-allowed" : "cursor-text"
3602
3602
  )
3603
3603
  ),
3604
- style: isFilled ? { ...inputStyleProp, color: filledValue, ...inputCaretStyle } : {
3604
+ style: isFilled ? {
3605
+ ...inputStyleProp,
3606
+ color: filledValue,
3607
+ ...inputCaretStyle,
3608
+ fontSize: "14px",
3609
+ lineHeight: "20px"
3610
+ } : {
3605
3611
  ...inputStyleProp,
3606
3612
  color: "transparent",
3607
3613
  caretColor: isFocus ? "var(--caret-color)" : "transparent",
3608
- padding: hasRight ? "12px 14px" : "14px"
3614
+ padding: hasRight ? "12px 14px" : "14px",
3615
+ fontSize: "16px",
3616
+ lineHeight: "24px"
3609
3617
  }
3610
3618
  }
3611
3619
  )