When I use the below Font Awesome icons, they do not change color when hovered over with the mouse. The e-icons do this fine. How do we make the fa icons work the same way?
```
List<ToolbarItemModel> toolbarItems = new List<ToolbarItemModel>
{
new ToolbarItemModel { PrefixIcon = "fa-solid fa-objects-column", TooltipText = "Export", Text = "Export" },
new ToolbarItemModel { PrefixIcon = "fa-solid fa-grip-vertical", TooltipText = "Export", Text = "Export" },
new ToolbarItemModel { PrefixIcon = "fa-light fa-ellipsis-vertical", TooltipText = "Export", Text = "Export" }
};
```