Default sass implementation for mixins shows that you can set arguments like this:
@mixin rtl($property, $ltr-value, $rtl-value) {
#{$property}: $ltr-value;
[dir=rtl] & {
#{$property}: $rtl-value;
}
}
is it possible to achieve something similar with this plugin? I didn't quite understand the example in README