import { displayDate } from '../../utils/datetime' import Link from 'next/link' import React from 'react' import JanImage from '../../containers/JanImage' import Image from 'next/image' import { ArrowDownTrayIcon } from '@heroicons/react/24/outline' type Props = { avatarUrl?: string senderName: string text: string createdAt: number imageUrls: string[] } const SimpleControlNetMessage: React.FC = ({ avatarUrl = '', senderName, imageUrls, text, createdAt, }) => { return (
{senderName}
{displayDate(createdAt)}

{text}

Download
) } export default SimpleControlNetMessage