| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 | @use 'sass:map';@use 'mixins/mixins' as *;@use 'mixins/var' as *;@use 'mixins/utils' as *;@use 'common/var' as *;@include b(link) {  @include set-component-css-var('link', $link);}@include b(link) {  display: inline-flex;  flex-direction: row;  align-items: center;  justify-content: center;  vertical-align: middle;  position: relative;  text-decoration: none;  outline: none;  cursor: pointer;  padding: 0;  font-size: getCssVar('link', 'font-size');  font-weight: getCssVar('link', 'font-weight');  color: getCssVar('link', 'text-color');  &:hover {    color: getCssVar('link', 'hover-text-color');  }  @include when(underline) {    &:hover:after {      content: '';      position: absolute;      left: 0;      right: 0;      height: 0;      bottom: 0;      border-bottom: 1px solid getCssVar('link', 'hover-text-color');    }  }  @include when(disabled) {    color: getCssVar('link', 'disabled-text-color');    cursor: not-allowed;  }  & [class*='#{$namespace}-icon-'] {    & + span {      margin-left: 5px;    }  }  &.#{$namespace}-link--default {    &:after {      border-color: getCssVar('link', 'hover-text-color');    }  }  @include e(inner) {    display: inline-flex;    justify-content: center;    align-items: center;  }  @each $type in $types {    &.#{$namespace}-link--#{$type} {      @include css-var-from-global(('link', 'text-color'), ('color', $type));      @include css-var-from-global(        ('link', 'hover-text-color'),        ('color', $type, 'light-3')      );      @include css-var-from-global(        ('link', 'disabled-text-color'),        ('color', $type, 'light-5')      );      &:after {        border-color: getCssVar('link', 'text-color');      }      @include when(underline) {        &:hover:after {          border-color: getCssVar('link', 'text-color');        }      }    }  }}
 |