@mixin svg-size($width: 1rem, $height: null) { @if $height == null { width: $width; height: $width; } @else { width: $width; height: $height; } }