返回 presentation-ai
comment-node-static.tsx
根目录 / src / components / plate / ui / comment-node-static.tsx
1 import { type TCommentText } from "platejs";
2 import { SlateLeaf, type SlateLeafProps } from "platejs/static";
3
4 export function CommentLeafStatic(props: SlateLeafProps<TCommentText>) {
5 return (
6 <SlateLeaf
7 {...props}
8 className="border-b-2 border-b-highlight/35 bg-highlight/15"
9 >
10 {props.children}
11 </SlateLeaf>
12 );
13 }
14
14 lines Plain Text