/**
 * @license
 * Copyright Akveo. All Rights Reserved.
 * Licensed under the MIT License. See License.txt in the project root for license information.
 */

@use '../../theme/styles/theming' as *;

@mixin b-btn-size($size) {
  font-size: nb-theme(button-#{$size}-text-font-size);
  line-height: nb-theme(button-#{$size}-text-line-height);
  padding: nb-theme(button-filled-#{$size}-padding);
}

@mixin b-btn-sizes() {
  .btn.btn-lg {
    @include b-btn-size(large);
  }

  .btn.btn-md {
    @include b-btn-size(medium);
  }

  .btn.btn-sm {
    @include b-btn-size(small);
  }

  .btn.btn-xs {
    @include b-btn-size(tiny);
  }
}
