import { cn } from "@/lib/utils"; import { Text } from "./ui/text"; export const ParagraphFormatter = (props: { paragraphs: string | null; className?: string; }) => { if (!props.paragraphs) return null; return (
{props.paragraphs?.split("\n").map((item, i) => ( {item} ))}
); };