%button {
display: inline-block;
width: 100px;
height: 50px;
}
@mixin button-color($color, $text) {
background: $color:
color: $text;
border: 1px solid $text;
}
.attention-button {
@extend %button;
@include button-color(red, white);
}
danger-button {
@extend %button;
@include button-color(lime, white);
}