mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-04 13:22:41 +02:00
14 lines
301 B
TypeScript
14 lines
301 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
|
||
|
|
import { type SlateElementProps, SlateElement } from 'platejs/static';
|
||
|
|
|
||
|
|
export function BlockquoteElementStatic(props: SlateElementProps) {
|
||
|
|
return (
|
||
|
|
<SlateElement
|
||
|
|
as="blockquote"
|
||
|
|
className="my-1 border-l-2 pl-6 italic"
|
||
|
|
{...props}
|
||
|
|
/>
|
||
|
|
);
|
||
|
|
}
|