TableCellProps<T>
TableCellProps<
T> =ComponentPropsWithRef<"td"> &VariantProps<typeofTableCellStyles> &object
Props for a table cell component.
Extends the standard HTML <td> element attributes and includes variant styling props.
Type Declaration
cell?
optionalcell:Cell<T,unknown>
Type Parameters
T
T
Remarks
- Inherits all properties from
TdHTMLAttributes<HTMLTableCellElement>. - Includes variant properties from
cellStyles. - Optionally accepts a
refto the underlying<td>element.