_icons.scss 381 B

123456789101112131415
  1. // specific icon class definition
  2. // -------------------------
  3. @use "sass:string";
  4. @use 'variables' as v;
  5. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  6. readers do not read off random characters that represent icons */
  7. @each $name, $icon in v.$icons {
  8. .#{v.$css-prefix}-#{$name} {
  9. #{v.$icon-property}: string.unquote("\"#{ $icon }\"");
  10. }
  11. }