fn_b/node_modules/@fortawesome/fontawesome-free/scss/_icons.scss
2026-02-12 13:55:43 +08:00

16 lines
381 B
SCSS
Executable File

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