@import "./src/common/var.less";
@import "./src/mixins/button.less";

@btn-prefix-cls:~"@{css-prefix}button";

.@{btn-prefix-cls}{
  .btn;

  & + & {
    margin-left: @button-spacing;
  }

  &-type-default {
    .btn-default;
  }

  &-type-primary {
    .btn-primary;
  }

  &-type-success{
    .btn-success;
  }

  &-type-info{
    .btn-info;
  }

  &-type-warning{
    .btn-warning;
  }

  &-type-danger{
    .btn-danger;
  }

  &-type-text{
    .btn-text;
  }
}
