// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
// See LICENSE in the project root for license information.

// ---------------------------------------------------------------------

// sass-lint:disable no-warn

// Internal support mixin, not designed for public use.

// @example scss - Using mixin with default values;
//  @import './libSupport/deprecated';
//  @include deprecated('@mixin auro_transition. No replacement. Discontinue use.');

@mixin deprecated($string) {
  @warn 'Deprecated: #{$string} Please see https://alaskaairlines.github.io/WebCoreStyleSheets/ for more information.';
}
