mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
d16144ece0
* refactor: button * refactor: avatar * refactor: alert * fix: input group compact
14 lines
326 B
C#
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";
|
|
}
|
|
} |