@use '../../../style/theme/util' as *;
@import '../../../style/common/var.scss';

.#{$prefix}-avatar-container {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px;
  padding: 0;
  overflow: hidden;
  @include theme() {
    background-color: get(white-1);
  }

  &.#{$prefix}-avatar-shape-round {
    border-radius: 6px;
  }

  &.#{$prefix}-avatar-shape-circle {
    border-radius: 50%;
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
}
