| 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 |