ant-design-blazor/components/button/ButtonShape.cs
James Yeung d16144ece0 refactor: remove the 'ant' prefix for some components that is already in demos (#162)
* refactor: button

* refactor: avatar

* refactor: alert

* fix: input group compact
2020-05-29 12:55:15 +08:00

14 lines
326 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace AntDesign
{
public static class ButtonShape
{
public const string Circle = "circle";
public const string CircleOutline = "circle-outline";
public const string Round = "round";
}
}