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 ( { clearSelection(); }} > {children}
  Name Issued Added
); }; export default DocumentsListContainer;