@martinsura/ui 0.1.6 → 0.1.7

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
@@ -511,7 +511,7 @@ var Textarea = ({ rows = 4, ...props }) => {
511
511
  placeholder: props.placeholder,
512
512
  disabled: props.disabled,
513
513
  onChange: (e) => props.onChange?.(e.target.value),
514
- className: twMerge(inputBaseClass, "min-h-24 py-2", errorDisplay && "border-(--ui-danger)")
514
+ className: twMerge(inputBaseClass, "min-h-24 px-(--ui-px-md) py-2 [font-size:var(--ui-text-md)] rounded-(--ui-radius-md)", errorDisplay && "border-(--ui-danger)")
515
515
  }
516
516
  ),
517
517
  errorDisplay && /* @__PURE__ */ jsx(InputError, { error: String(errorDisplay) })