JSFiddle - React, Tailwind, and code Playground
by igalst
HTML
<div class="rectangle-a">A</div>
<div class="rectangle-b">B</div>
SCSS
@mixin dimensions($width, $height) {
width: $width;
height: $height;
}
.rectangle-a {
@include dimensions(100px, 75px);
background: #FED;
}
.rectangle-b {
@include dimensions(200px, 150px);
background: #DAD;
}