/*
 * SPDX-FileCopyrightText: 2023 Siemens AG
 *
 * SPDX-License-Identifier: MIT
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
:host {
  display: inline-flex;
  height: 1.5rem;
  width: 1.5rem;
  min-height: 1.5rem;
  min-width: 1.5rem;
  color: inherit;
}
:host .svg-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
:host .svg-container svg {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
:host .svg-container svg,
:host .svg-container svg[fill],
:host .svg-container svg [fill] {
  fill: currentColor !important;
}

:host(.size-12) {
  height: 0.75rem;
  width: 0.75rem;
  min-height: 0.75rem;
  min-width: 0.75rem;
}

:host(.size-16) {
  height: 1rem;
  width: 1rem;
  min-height: 1rem;
  min-width: 1rem;
}

:host(.size-32) {
  height: 2rem;
  width: 2rem;
  min-height: 2rem;
  min-width: 2rem;
}