export interface RecentDocumentProps {
    loading?: boolean;
    key: string;
    link: string;
    title: string;
    tags?: string[];
    isNew?: boolean;
    lastUpdate?: string;
    classNames?: string;
}
