@import '../../utils/variables/breakpoints';

@mixin res($key, $map: $st-breakpoints) {
  @if map-has-key($map, $key) {
    @media only screen and #{inspect(map-get($map, $key))} {
      @content;
    }
  }

  @else {
    @warn 'Undefeined points: `#{$map}`';
  }
}
