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

8 lines
243 B
TypeScript
Raw Normal View History

2026-02-17 12:47:39 +05:30
"use client";
2026-02-20 22:44:56 -08:00
import { PlateElement, type PlateElementProps } from "platejs/react";
export function BlockquoteElement(props: PlateElementProps) {
2026-02-17 12:47:39 +05:30
return <PlateElement as="blockquote" className="my-1 border-l-2 pl-6 italic" {...props} />;
}