Shared:Components:Table: fix types for table cell

This commit is contained in:
Timofey Boyko 2024-06-26 17:47:45 +03:00
parent b2f47a0125
commit 10b2e65d7f

View File

@ -130,6 +130,8 @@ export interface TableRowProps {
export interface TableCellProps { export interface TableCellProps {
className: string; className: string;
hasAccess?: boolean;
checked?: boolean;
forwardedRef?: React.ForwardedRef<HTMLDivElement>; forwardedRef?: React.ForwardedRef<HTMLDivElement>;
style?: React.CSSProperties; style?: React.CSSProperties;
children?: React.ReactNode; children?: React.ReactNode;