@function border-radius($border-radius) {
  $value: map-get($steller-border-radiuses, '#{$border-radius}');

  @if $value == null {
    @error 'border-radius(#{$border-radius}) function returned null value. Make sure the value is in $steller-border-radiuses.';
  }

  @return $value;
}
