mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
22 lines
532 B
TypeScript
22 lines
532 B
TypeScript
import * as React from 'react';
|
|
|
|
import type { SlateElementProps } from 'platejs/static';
|
|
|
|
import { SlateElement } from 'platejs/static';
|
|
|
|
import { cn } from '@/lib/utils';
|
|
|
|
export function HrElementStatic(props: SlateElementProps) {
|
|
return (
|
|
<SlateElement {...props}>
|
|
<div className="cursor-text py-6" contentEditable={false}>
|
|
<hr
|
|
className={cn(
|
|
'h-0.5 rounded-sm border-none bg-muted bg-clip-content'
|
|
)}
|
|
/>
|
|
</div>
|
|
{props.children}
|
|
</SlateElement>
|
|
);
|
|
}
|