@layer utilities {
  .svg-icon {
    display: block;
    width: 100%;
    height: 100%;
    background-color: currentColor;

    mask: no-repeat;
    mask-position: center;
    mask-size: contain;
  }

  .svg-img {
    position: relative;

    display: block;
    background-color: currentColor;

    mask: no-repeat;
    mask-position: center;
    mask-size: contain;

    > img {
      opacity: 0;
    }
  }
}
