11 lines
310 B
TypeScript
11 lines
310 B
TypeScript
|
|
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>
|
||
|
|
);
|
||
|
|
}
|