SurfSense/surfsense_web/components/ui/paragraph-node.tsx

16 lines
360 B
TypeScript
Raw Normal View History

2026-02-17 12:47:39 +05:30
"use client";
2026-02-17 12:47:39 +05:30
import type { PlateElementProps } from "platejs/react";
import { PlateElement } from "platejs/react";
2026-02-20 22:44:56 -08:00
import * as React from "react";
2026-02-17 12:47:39 +05:30
import { cn } from "@/lib/utils";
export function ParagraphElement(props: PlateElementProps) {
2026-02-17 12:47:39 +05:30
return (
<PlateElement {...props} className={cn("m-0 px-0 py-1")}>
{props.children}
</PlateElement>
);
}