Using Icons - ChrispyPeaches/FocusFriends GitHub Wiki
Details
Icons in the FocusApp application are a collection of Unicode escape sequence properties defined as two classes with properties for each icon.
- They're found at the namespace: FocusApp.Resources.FontAwesomeIcons
- All icons are from Font Awesome
- If you're looking for an icon to use you can find its name using the search tool at fontawesome.com
 
- There are two collections of icon types
- SolidIcons (Font Awesome Solidpack)
- LineArtIcons (Font Awesome Regularpack)
 
- SolidIcons (Font Awesome 
- The files were generated using this tool for translating IconFont into C# code
Usage
FocusApp.Resouces.FontAwesomeIcons.{IconPack}.{IconName}
Examples
using FocusApp.Resources.FontAwesomeIcons
...
new Label
{
    Text = SolidIcons.Anchor,
    FontFamily = nameof(SolidIcons)
},
new Label
{
    Text = SolidIcons.Anchor,
    FontFamily = nameof(LineArtIcons)
}
...