mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
13 lines
301 B
TypeScript
13 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}
|
|
/>
|
|
);
|
|
}
|