/* This file is part of the Notesnook project (https://notesnook.com/) Copyright (C) 2023 Streetwriters (Private) Limited This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ import { mdiTimerOutline } from "@mdi/js"; import { Icon } from "@notesnook/ui"; import { Flex, Image, Link, Text } from "@theme-ui/components"; import { SxProp } from "@theme-ui/core"; type Props = SxProp & { publicUrl: string }; export function MonographChat({ sx, publicUrl }: Props) { return ( Yes, here's the link:{" "} {publicUrl}/62db75572020209c36f9f9fb The password is{" "} open-source } time="just now" incoming={false} /> ); } const ChatItem = ({ message, time, incoming }: { message: JSX.Element | string; time: string; incoming: boolean; }) => { return ( {message} ); }; function Timer({ time, sx }: { time: string } & SxProp) { return ( {time} ); }