File size: 279 Bytes
ddfb4ad
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from "react";
export default function Highlight({ children }) {
  return (
    <span
      style={{
        backgroundColor: "#7874e8",
        borderRadius: "2px",
        color: "#fff",
        padding: "0.2rem",
      }}
    >
      {children}
    </span>
  );
}