mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-26 17:26:23 +02:00
24 lines
634 B
TypeScript
24 lines
634 B
TypeScript
|
|
import * as React from 'react';
|
||
|
|
|
||
|
|
import type { TLinkElement } from 'platejs';
|
||
|
|
import type { SlateElementProps } from 'platejs/static';
|
||
|
|
|
||
|
|
import { getLinkAttributes } from '@platejs/link';
|
||
|
|
import { SlateElement } from 'platejs/static';
|
||
|
|
|
||
|
|
export function LinkElementStatic(props: SlateElementProps<TLinkElement>) {
|
||
|
|
return (
|
||
|
|
<SlateElement
|
||
|
|
{...props}
|
||
|
|
as="a"
|
||
|
|
className="font-medium text-primary underline decoration-primary underline-offset-4"
|
||
|
|
attributes={{
|
||
|
|
...props.attributes,
|
||
|
|
...getLinkAttributes(props.editor, props.element),
|
||
|
|
}}
|
||
|
|
>
|
||
|
|
{props.children}
|
||
|
|
</SlateElement>
|
||
|
|
);
|
||
|
|
}
|