@mixin isProp($prop) {
    @each $p1, $p2 in $prop {
        @if not $p2 {
            @content($p1);
        } @else {
            @content($p1, $p2);
        }
    }
}
