13 lines
450 B
C#
13 lines
450 B
C#
namespace salesbook.Shared.Core.Helpers;
|
|
|
|
class IconConstants
|
|
{
|
|
public class Chip
|
|
{
|
|
public const string Stato = "ri-list-check-3 fa-fw fa-chip";
|
|
public const string User = "ri-user-fill fa-fw fa-chip";
|
|
public const string Time = "ri-time-line fa-fw fa-chip";
|
|
public const string FileTextLine = "ri-file-text-line fa-fw fa-chip";
|
|
public const string Tag = "ri-price-tag-3-fill fa-fw fa-chip";
|
|
}
|
|
} |