//
// Copyright 2025 Sandlada & Kai Orion
// SPDX-License-Identifier: MIT
//

@use 'sass:map';
@use '../../../tokens';

@mixin styles() {
    $tokens: tokens.md-comp-error-container-banner-values();

    // Only use the logical properties.
    $tokens: map.remove($tokens, 'container-shape');

    & {
        @each $token, $value in $tokens {
            --_#{$token}: #{$value};
        }
    }
}
