@import '../helper';

@mixin height($prefix, $map-values, $variants: (), $separator: '_') {
  $map-props: (
    default: height,
  );

  @include style($prefix, h, $map-values, $map-props, $variants, $separator);
}

@mixin min-height($prefix, $map-values, $variants: (), $separator: '_') {
  $map-props: (
    default: min-height,
  );

  @include style($prefix, min-h, $map-values, $map-props, $variants, $separator);
}

@mixin max-height($prefix, $map-values, $variants: (), $separator: '_') {
  $map-props: (
    default: max-height,
  );

  @include style($prefix, max-h, $map-values, $map-props, $variants, $separator);
}
