2026-02-17 12:47:39 +05:30
|
|
|
"use client";
|
2026-02-16 00:11:34 +05:30
|
|
|
|
2026-02-17 12:47:39 +05:30
|
|
|
import * as React from "react";
|
2026-02-16 00:11:34 +05:30
|
|
|
|
2026-02-17 12:47:39 +05:30
|
|
|
import type { PlateElementProps } from "platejs/react";
|
2026-02-16 00:11:34 +05:30
|
|
|
|
2026-02-17 12:47:39 +05:30
|
|
|
import { PlateElement } from "platejs/react";
|
2026-02-16 00:11:34 +05:30
|
|
|
|
2026-02-17 12:47:39 +05:30
|
|
|
import { cn } from "@/lib/utils";
|
2026-02-16 00:11:34 +05:30
|
|
|
|
|
|
|
|
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>
|
|
|
|
|
);
|
2026-02-16 00:11:34 +05:30
|
|
|
}
|