@use "sass:math";

@function gcd($a, $b) {
  @if $b == 0 {
    @return math.abs($a);
  }

  @return gcd($b, $a % $b);
}
