Files
mixtape/zero/Rendering/IconOptions.cs
T
2025-12-11 15:22:25 +01:00

20 lines
378 B
C#

namespace zero.Rendering;
public class IconOptions : IconSetOptions
{
public List<IconSetOptions> Sets { get; set; } = [];
}
public class IconSetOptions
{
public string Key { get; set; }
public string Path { get; set; }
public string CssClass { get; set; }
public int? DefaultSize { get; set; } = 18;
public decimal? DefaultStrokeWidth { get; set; } = 2;
}