.#{$empty-prefix-cls} {
  text-align: center;
  &__img {
    img {
      display: inline-block;
      width: $empty-image-size;
    }
  }
  &__desc {
    font-size: $font-size-sm;
    color: $gray-light-45;
    margin: $empty-desc-spacer auto;
  }
  &--lg {
    .#{$empty-prefix-cls}__img {
      img {
        width: $empty-image-size-lg;
      }
    }
  }
  &--sm {
    .#{$empty-prefix-cls}__img {
      img {
        width: $empty-image-size-sm;
      }
    }
  }
  &--no-img {
    .#{$empty-prefix-cls}__desc {
      font-size: $font-size-xs;
      margin: 0;
    }
  }
}