.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: $border-radius;
  font: {
    size: 18px;
    weight: 600;
  }
  width: 48px;
  height: 48px;

  &.avatar-xxs {
    width: 16px;
    height: 16px;
    font-size: 14px;
    border-radius: 5px;
  }

  &.avatar-xs {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  &.avatar-s {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  &.avatar-l {
    width: 64px;
    height: 64px;
    font-size: 20px;
  }

  &.avatar-xl {
    width: 80px;
    height: 80px;
    font-size: 24px;
  }

  &.avatar-square {
    border-radius: 4px;
    border: 2px solid;
  }

  &.avatar-icon {
    border: 2px solid $border-color;

    > img {
      width: 60%;
    }
  }
}
