12 lines
251 B
C#
12 lines
251 B
C#
namespace zero.Rendering;
|
|
|
|
public class IconOptions
|
|
{
|
|
public string CssClass { get; set; } = "app-icon";
|
|
|
|
public int DefaultSize { get; set; } = 18;
|
|
|
|
public decimal DefaultStrokeWidth { get; set; } = 2;
|
|
|
|
public string Path { get; set; }
|
|
} |