// Font-Awesome - Version 5.0.9
namespace Dalamud.Interface;
///
/// Extension methods for .
///
public static class FontAwesomeExtensions
{
///
/// Convert the FontAwesomeIcon to a type.
///
/// The icon to convert.
/// The converted icon.
public static char ToIconChar(this FontAwesomeIcon icon)
{
return (char)icon;
}
///
/// Conver the FontAwesomeIcon to a type.
///
/// The icon to convert.
/// The converted icon.
public static string ToIconString(this FontAwesomeIcon icon)
{
return string.Empty + (char)icon;
}
}