namespace AcdiuTools.Constants
{
///
/// 全局 UI 常量定义
///
public static class UIConstants
{
///
/// 资源路径常量
///
public static class Paths
{
///
/// 默认 Bootstrap Icons SVG Sprite 文件路径
///
public const string DefaultIconSprite = "/lib/bootstrap-icons-1.13.1/bootstrap-icons.svg";
}
///
/// BS SVG 图标默认需要添加的 CSS 类名
///
public static class Classes
{
public const string DefaultWidth = "w-1r";
public const string DefaultHeight = "h-1r";
}
}
}