@fattureincloud/fic-design-system 0.7.21-tmp → 0.7.21-tmp-safari

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import { ColumnDef } from '@tanstack/react-table';
3
+ import { CellProps } from '../../types';
4
+ interface Props<T> {
5
+ loadingMode: 'full' | 'cell';
6
+ columns: ColumnDef<T, CellProps>[];
7
+ }
8
+ declare const LoadingRow: <T>({ columns, loadingMode }: Props<T>) => JSX.Element;
9
+ export default LoadingRow;