Files
Arkie-Library-Frontend/src/components/messageStream/bubbles/TextBubble.tsx

11 lines
310 B
TypeScript
Raw Normal View History

import type { Post } from "../../../types/post";
import { autolink } from "../utils/autolink";
export function TextBubble({ post }: { post: Post }) {
return (
<div className="whitespace-pre-wrap break-words text-[14px] leading-snug text-neutral-100">
{autolink(post.text ?? "")}
</div>
);
}