type SessionChatMessageProps = {}

export default function SessionChatMessage(props: SessionChatMessageProps) {
    return (
        <div
            className="flex flex-col w-full max-w-[320px] md:max-w-[640px] leading-1.5 p-4 border-gray-200 bg-gray-100 rounded-e-xl rounded-es-xl dark:bg-gray-700">
            <p className="text-sm font-normal py-2.5 text-gray-900 dark:text-white">
                That's awesome. I think our users will really appreciate the improvements. dddddddddddd dddddddddd ddd ddddddddd dddddd
            </p>
            <span className="text-sm font-normal text-gray-500 dark:text-gray-400">11:46</span>
        </div>
    )
}