ant-design-blazor/components/table/TableSize.cs
Hao Sun c9d287e5fd feat(module: table): use small size Pagination for compacted table, add PaginationSize enum type (#2246)
* feat(module:table&pagination): use small size Pagination for compacted table, add PaginationSize enum type

* change TableSize to primitive enum type
2022-05-28 13:41:01 +08:00

14 lines
316 B
C#

// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
namespace AntDesign
{
public enum TableSize
{
Default,
Middle,
Small
}
}