diff --git a/frontend/src/documents/components/DocumentsListContainer.tsx b/frontend/src/documents/components/DocumentsListContainer.tsx index e599e55..dd9f50b 100644 --- a/frontend/src/documents/components/DocumentsListContainer.tsx +++ b/frontend/src/documents/components/DocumentsListContainer.tsx @@ -3,12 +3,14 @@ import React from 'react'; interface DocumentsListContainerProps { children: React.ReactNode; clearSelection: () => void; + iconSize?: number; [key: string]: any; } const DocumentsListContainer: React.FC = ({ children, clearSelection, + iconSize: _iconSize, ...props }) => { return (