Files
mixtape/Finch/Rendering/IconOptions.cs
T
2026-04-07 14:23:29 +02:00

25 lines
438 B
C#

namespace Finch.Rendering;
public class IconOptions : IconSetOptions
{
public IconOptions()
{
CssClass = "app-icon";
}
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;
}