mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 08:46:22 +02:00
13 lines
343 B
TypeScript
13 lines
343 B
TypeScript
"use client";
|
|
|
|
import type { PlateLeafProps } from "platejs/react";
|
|
import { PlateLeaf } from "platejs/react";
|
|
import * as React from "react";
|
|
|
|
export function HighlightLeaf(props: PlateLeafProps) {
|
|
return (
|
|
<PlateLeaf {...props} as="mark" className="bg-yellow-200 dark:bg-yellow-800 text-inherit">
|
|
{props.children}
|
|
</PlateLeaf>
|
|
);
|
|
}
|