import * as React from "react"; import Editor from "~/components/Editor"; import Flex from "~/components/Flex"; import { Preview, Title, Info, Card, CardContent, Description, } from "./Components"; type Props = { /** Document id associated with the editor, if any */ id?: string; /** Document url */ url: string; /** Title for the preview card */ title: string; /** Info about last activity on the document */ info: string; /** Text preview of document content */ description: string; }; function HoverPreviewDocument({ id, url, title, info, description }: Props) { return ( {title} {info} }> ); } export default HoverPreviewDocument;