ant-design-blazor/components/button/ButtonShape.cs

14 lines
326 B
C#
Raw Normal View History

2019-12-16 15:33:29 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AntDesign
2019-12-16 15:33:29 +08:00
{
public static class ButtonShape
2019-12-16 15:33:29 +08:00
{
public const string Circle = "circle";
public const string CircleOutline = "circle-outline";
public const string Round = "round";
}
}