@fattureincloud/fic-design-system 0.4.11 → 0.4.12

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,7 @@
1
- import { Key } from 'react';
2
1
  import { ColumnInstance } from 'react-table';
3
2
  import { TableData } from '../../types';
4
3
  interface LoadingCellProps<T extends TableData> {
5
4
  column: ColumnInstance<T>;
6
- key: Key;
7
5
  }
8
- declare const LoadingCell: <T extends TableData>({ column, key }: LoadingCellProps<T>) => JSX.Element;
6
+ declare const LoadingCell: <T extends TableData>({ column }: LoadingCellProps<T>) => JSX.Element;
9
7
  export default LoadingCell;