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 { interface DocumentsListContainerProps {
children: React.ReactNode; children: React.ReactNode;
clearSelection: () => void; clearSelection: () => void;
iconSize?: number;
[key: string]: any; [key: string]: any;
} }
const DocumentsListContainer: React.FC<DocumentsListContainerProps> = ({ const DocumentsListContainer: React.FC<DocumentsListContainerProps> = ({
children, children,
clearSelection, clearSelection,
iconSize: _iconSize,
...props ...props
}) => { }) => {
return ( return (