This commit is contained in:
2025-12-07 20:45:01 +01:00
parent 2d5cc1fd7c
commit d62f462129
@@ -3,12 +3,14 @@ import React from 'react';
interface DocumentsListContainerProps {
children: React.ReactNode;
clearSelection: () => void;
iconSize?: number;
[key: string]: any;
}
const DocumentsListContainer: React.FC<DocumentsListContainerProps> = ({
children,
clearSelection,
iconSize: _iconSize,
...props
}) => {
return (