1. 문자열에 클래스명 (dot까지 포함) 넣은 후 변수에 할당
  2. #{${abc}} 형식으로 클래스 이름 위치에 사용

그냥 쓸 때

$ttt: '.hg-row';

#{$ttt} {
      gap: 2px;
}

배열에 넣어서 쓸 때

$test: [ '.hg-standardBtn', '.hg-button-space' ];

@each $ccc in $test {
  #{$ccc} {
    background-color: red;
  }
}