// Imports
@import './_variables.scss';

.nv-icon {
  @each $name, $size in $icon-sizes {
    &.nv-size--#{$name} {
      font-size: #{$size};
      width: #{$size};
      height: #{$size};

      svg {
        width: #{$size};
        height: #{$size};
      }

      i {
        @apply leading-normal;
      }
    }
  }
}
