Yamada UIにスターをあげる

スター
Yamada UIYamada UIv1.5.1

Table

Tableは、列のソートや行の選択やクリックイベント機能を備えたテーブルのコンポーネントです。

ソース@yamada-ui/table

テーマ

Tableは、複数パーツのコンポーネントです。

export const Table: ComponentMultiStyle<"Table"> = mergeMultiStyle(
NativeTable,
{
baseStyle: {
sortIcon: {},
},
sizes: {
sm: {
sortIcon: {
right: 2,
},
},
md: {
sortIcon: {
right: 3,
},
},
lg: {
sortIcon: {
right: 4,
},
},
xl: {
sortIcon: {
right: 6,
},
},
},
},
)()
Copied!

GitHubでこのページを編集する

StatPagingTable