/// Create a circle: set the height & width to the same size and calculate the border-radius
//// @group Shapes
/// @param {value} $size [none] - height & width size and border-radius size/2
@mixin circle($size) {
  @include size($size);
  @include border-radius($size / 2);
}
