mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-04 21:17:36 +08:00
f9b615c2ca
...for affix,back-top,breadcrumb,card,divider,typogragpy and timeline Co-authored-by: ElderJames <shunjiey@hotmail.com>
16 lines
367 B
C#
16 lines
367 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AntDesign
|
|
{
|
|
public static class TabPosition
|
|
{
|
|
public const string Top = "top";
|
|
public const string Right = "right";
|
|
public const string Bottom = "bottom";
|
|
public const string Left = "left";
|
|
}
|
|
} |