```html
<p class="text-wrap">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aperiam voluptatem similique officiis recusandae esse cum in totam quisquam perspiciatis quod! Magnam culpa vitae, tempore eos explicabo cupiditate. Deserunt, quisquam, quos!</p>
```
+
+---
+
+## Helper Box Mixin
+
+This mixin helps you to easily create a square, rectangle or a circle
+
+#### Box: Usage a mixin
+
+```scss
+.foo {
+ @include box(1rem, 2rem); // Rectangle
+}
+.bar {
+ @include box(1rem); // Square
+}
+.baz {
+ @include box(1rem, $circle: true); // Circle
+}
+```
+
+Sass Reference [here](#box)
/// Box Mixin: Easily create a square, rectangle or a circle
/// @param {Number} $width[] Width of the box
-/// @param {Number} $height[] Height of the box
+/// @param {Number} $height[$width] Height of the box, defaults to `$width` to easily make a square
/// @param {Boolean} $circle[false] Makes the box a circle, by default `false`.
-@mixin box($width, $height, $circle: false) {
+@mixin box(
+ $width,
+ $height: $width,
+ $circle: false
+) {
width: $width;
height: $height;
@if $circle {