@import "../../styles/tools/_functions.scss";

$textarea-font-sizes: () !default;
$textarea-font-sizes: map-deep-merge(
  (
    "xs": 0.625rem,
    "sm": 0.75rem,
    "md": 0.875rem,
    "lg": 1.125rem,
  ),
  $textarea-font-sizes
);

$textarea-font-line-height: () !default;
$textarea-font-line-height: map-deep-merge(
  (
    "xs": calc(1.4 * 0.625rem),
    "sm": calc(1.4 * 0.75rem),
    "md": calc(1.4 * 0.875rem),
    "lg": calc(1.4 * 1.125rem),
  ),
  $textarea-font-line-height
);

$textarea-height: () !default;
$textarea-height: map-deep-merge(
  (
    "xs": 24px,
    "sm": 36px,
    "md": 44px,
    "lg": 48px,
  ),
  $textarea-height
);
