:host {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-avatar-noimg-bg);
  color: var(--color-avatar-noimg-fg);
  border-radius: 100%;
}

:host img {
  height: inherit;
  width: inherit;
  border-radius: inherit;
}

:host svg path {
  fill: var(--color-avatar-noimg-fg);
}

:host(.small) {
  width: 24px;
  height: 24px;
}

:host(.middle) {
  width: 32px;
  height: 32px;
}

:host(.large) {
  width: 42px;
  height: 42px;
}

:host(.small) svg {
  width: 18px;
  height: 18px;
}

:host(.middle) svg {
  width: 24px;
  height: 24px;
}

:host(.large) svg {
  width: 36px;
  height: 36px;
}