mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
648f9c6a6b
Co-authored-by: ElderJames <shunjiey@hotmail.com>
13 lines
246 B
C#
13 lines
246 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public static class CollapseExpandIconPosition
|
|
{
|
|
public const string Left = "left";
|
|
public const string Right = "right";
|
|
}
|
|
}
|