The framework automatically includes the Font Awesome icons (v6), but does not include the standard Font Awesome CSS. The icons are imported into the framework's CSS as
<!-- Display FontAwesome icon, inline, using the hex code in the form ꪪ -->
<span class="FA"></span>
Or, using CSS to declare a class which displays an icon using
.tickicon {
font-family: FontAwesome;
}
.tickicon:after {
content: "\f058";
}