@@ -29,7 +29,7 @@ export function ButtonCell({
29
29
value : buttonProps ,
30
30
column : { align } ,
31
31
options,
32
- } : CellProps < { } , Omit < ButtonProps , "size" > > & {
32
+ } : CellProps < any , Omit < ButtonProps , "size" > > & {
33
33
options : Partial < Pick < ButtonProps , "size" > > ;
34
34
} ) {
35
35
const config = useBentoConfig ( ) . table ;
@@ -48,7 +48,7 @@ export function ButtonLinkCell({
48
48
value : buttonProps ,
49
49
column : { align } ,
50
50
options,
51
- } : CellProps < { } , Omit < ButtonLinkProps , "size" > > & {
51
+ } : CellProps < any , Omit < ButtonLinkProps , "size" > > & {
52
52
options : Partial < Pick < ButtonLinkProps , "size" > > ;
53
53
} ) {
54
54
const config = useBentoConfig ( ) . table ;
@@ -67,7 +67,7 @@ export function TextCell({
67
67
value,
68
68
column : { align } ,
69
69
options,
70
- } : CellProps < { } , LocalizedString > & {
70
+ } : CellProps < any , LocalizedString > & {
71
71
options : Partial < Pick < BodyProps , "size" | "weight" | "color" > > ;
72
72
} ) {
73
73
const config = useBentoConfig ( ) . table ;
@@ -87,7 +87,7 @@ export function TextWithIconCell({
87
87
column : { align } ,
88
88
options,
89
89
} : CellProps <
90
- { } ,
90
+ any ,
91
91
{
92
92
icon : ( ( props : IconProps ) => Children ) | null ;
93
93
iconPosition : "left" | "right" ;
@@ -132,7 +132,7 @@ export function TextWithIconCell({
132
132
) ;
133
133
}
134
134
135
- export function ChipCell ( { value : chipProps , column : { align } } : CellProps < { } , ChipProps > ) {
135
+ export function ChipCell ( { value : chipProps , column : { align } } : CellProps < any , ChipProps > ) {
136
136
const config = useBentoConfig ( ) . table ;
137
137
const padding = config . padding . chipCell ?? config . padding . defaultCell ;
138
138
return (
@@ -148,7 +148,7 @@ export function LabelCell({
148
148
value,
149
149
column : { align } ,
150
150
options,
151
- } : CellProps < { } , LocalizedString > & {
151
+ } : CellProps < any , LocalizedString > & {
152
152
options : Partial < Pick < LabelProps , "size" | "color" > > ;
153
153
} ) {
154
154
const config = useBentoConfig ( ) . table ;
@@ -167,7 +167,7 @@ export function LinkCell({
167
167
value,
168
168
column : { align } ,
169
169
options,
170
- } : CellProps < { } , ComponentProps < typeof Link > > & {
170
+ } : CellProps < any , ComponentProps < typeof Link > > & {
171
171
options : Partial < Pick < BodyProps , "size" | "weight" > > ;
172
172
} ) {
173
173
const config = useBentoConfig ( ) . table ;
@@ -186,7 +186,7 @@ export function IconCell({
186
186
value,
187
187
column : { align } ,
188
188
options,
189
- } : CellProps < { } , { icon : ( props : IconProps ) => JSX . Element ; label : LocalizedString } > & {
189
+ } : CellProps < any , { icon : ( props : IconProps ) => JSX . Element ; label : LocalizedString } > & {
190
190
options : Partial < Pick < IconProps , "size" | "color" > > ;
191
191
} ) {
192
192
const config = useBentoConfig ( ) . table ;
@@ -203,7 +203,7 @@ export function IconButtonCell({
203
203
value : iconButtonProps ,
204
204
column : { align } ,
205
205
options,
206
- } : CellProps < { } , Omit < IconButtonProps , "size" | "kind" | "hierarchy" > > & {
206
+ } : CellProps < any , Omit < IconButtonProps , "size" | "kind" | "hierarchy" > > & {
207
207
options : Partial < Pick < IconButtonProps , "size" | "kind" | "hierarchy" > > ;
208
208
} ) {
209
209
const config = useBentoConfig ( ) . table ;
0 commit comments