@mixin box($width, $height: $width) {
  width: $width;
  height: $height;
}

@mixin square($value) {
  @include box($value, $value);
}
