SurfSense/surfsense_web/components/ui/paragraph-node.tsx
DESKTOP-RTLN3BA\$punk 634f6f24bf chore: linting
2026-02-20 22:44:56 -08:00

15 lines
360 B
TypeScript

"use client";
import type { PlateElementProps } from "platejs/react";
import { PlateElement } from "platejs/react";
import * as React from "react";
import { cn } from "@/lib/utils";
export function ParagraphElement(props: PlateElementProps) {
return (
<PlateElement {...props} className={cn("m-0 px-0 py-1")}>
{props.children}
</PlateElement>
);
}