ant-design-blazor/components/tabs/TabSize.cs

15 lines
326 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace AntDesign
{
public static class TabSize
{
public const string Large = "large";
public const string Default = "default";
public const string Small = "small";
}
}