@mixin text-avatar-size($size, $font-size) {
  width: $size;
  height: $size;
  line-height: $size;
  font-size: $font-size;
  border-radius: $shape-circular;
}

@mixin image-avatar-size($size) {
  width: $size;
  height: $size;
  border-radius: $shape-circular;
  img {
    width: $size;
    height: $size;
    border-radius: $shape-circular;
  }
}
