@prefix: pisell-avatar;

.@{prefix} {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--Gray-100, #f2f4f7); // 默认背景色
  border: 1px solid #d0d5dd; // 移除默认边框
  box-sizing: border-box;

  img {
    object-fit: cover;
  }

  .anticon {
    font-size: inherit !important;
    color: var(--Gray-600, #475467) !important;
  }

  // 文本头像样式
  &.pisell-avatar-with-text {
    background: var(--Gray-100, #f2f4f7); // 文本头像的背景色
    color: var(--Gray-600, #475467); // 文本颜色
    font-weight: 600;
    // border: 0.75px solid var(--Gray-900, #101828);
  }
}
