@use "sass:string";
@use "../tokens/breakpoint";

:export {
  @each $key, $value in breakpoint.$map {
    #{string.unquote($key)}: $value;
  }
}
